add auth migration
All checks were successful
Build and Deploy API / build-and-deploy (push) Successful in 8s

This commit is contained in:
2026-03-16 21:49:12 -05:00
parent d8f64754b4
commit c19cd0c718
4 changed files with 92 additions and 1 deletions

View File

@@ -36,6 +36,10 @@ namespace agologum_api.Migrations
.IsRequired()
.HasColumnType("text");
b.Property<string>("PasswordHash")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.ToTable("Users");