refactor(core): enhance User and RefreshToken domain models

This commit is contained in:
Stevan Freeborn
2026-02-03 21:04:25 -06:00
parent 3fbd9402c3
commit ce5fd1fd45
3 changed files with 38 additions and 2 deletions
@@ -29,6 +29,9 @@ namespace FiscalOS.Infra.Migrations
b.Property<DateTimeOffset>("ExpiresAt")
.HasColumnType("TEXT");
b.Property<bool>("Revoked")
.HasColumnType("INTEGER");
b.Property<string>("Token")
.IsRequired()
.HasColumnType("TEXT");