UserInfo Seite zeigt fast alles an + User werden in datenbank registriert

This commit is contained in:
2025-06-14 20:15:44 +02:00
parent d5ea5e4581
commit 546225bfb9
9 changed files with 507 additions and 21 deletions

View File

@@ -191,10 +191,17 @@ namespace Watcher.Migrations
.ValueGeneratedOnAdd()
.HasColumnType("int");
b.Property<string>("PocketId")
b.Property<string>("Email")
.HasColumnType("longtext");
b.Property<string>("Role")
b.Property<DateTime>("LastLogin")
.HasColumnType("datetime(6)");
b.Property<string>("PocketId")
.IsRequired()
.HasColumnType("longtext");
b.Property<string>("PreferredUsername")
.IsRequired()
.HasColumnType("longtext");