Remove Verified property from User entity and update related migration

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
troogs
2026-04-26 10:25:16 +02:00
parent 48ad7dda87
commit 54effa67ac
5 changed files with 293 additions and 10 deletions

View File

@@ -200,9 +200,6 @@ namespace FoodsharingSiegen.Server.Migrations
b.Property<int>("Type")
.HasColumnType("INTEGER");
b.Property<bool>("Verified")
.HasColumnType("INTEGER");
b.HasKey("Id");
b.ToTable("Users");