feat(infra): update refresh token model

This commit is contained in:
Stevan Freeborn
2026-02-03 04:38:40 -06:00
parent eb2d9fb2d0
commit 1335f62ec3
4 changed files with 148 additions and 3 deletions
@@ -26,6 +26,13 @@ namespace FiscalOS.Infra.Migrations
b.Property<DateTimeOffset>("CreatedAt")
.HasColumnType("TEXT");
b.Property<DateTimeOffset>("ExpiresAt")
.HasColumnType("TEXT");
b.Property<string>("Token")
.IsRequired()
.HasColumnType("TEXT");
b.Property<DateTimeOffset>("UpdatedAt")
.HasColumnType("TEXT");