feat(infra): added migrations for adding properties to user model

This commit is contained in:
Stevan Freeborn
2026-02-06 06:53:20 -06:00
parent bbe3779a53
commit e9b1bd11bb
11 changed files with 322 additions and 44 deletions
@@ -61,6 +61,14 @@ namespace FiscalOS.Infra.Migrations
b.Property<DateTimeOffset>("CreatedAt")
.HasColumnType("TEXT");
b.Property<string>("EncryptedDataKey")
.IsRequired()
.HasColumnType("TEXT");
b.Property<string>("EncryptionKeyId")
.IsRequired()
.HasColumnType("TEXT");
b.Property<string>("HashedPassword")
.IsRequired()
.HasColumnType("TEXT");