summaryrefslogtreecommitdiff
path: root/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs
diff options
context:
space:
mode:
authorTim <contact@bytim.eu>2025-04-19 19:33:04 +0200
committerTim <contact@bytim.eu>2025-04-19 19:33:04 +0200
commit6a9657a10dc5ef3c4dfddf222284eec6c933ac83 (patch)
treea2b939a2e51ad04dd2635126be27d66c781666dd /VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs
parentff9b1e112ed14746ed74dfff1fb4c19efd5502d4 (diff)
downloadVPNAuth-master.tar.xz
VPNAuth-master.zip
Add OIDC user-information endpointHEADmaster
Diffstat (limited to 'VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs')
-rw-r--r--VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs b/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs
index e4643df..4dcce6b 100644
--- a/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs
+++ b/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs
@@ -38,6 +38,10 @@ namespace VPNAuth.Server.Migrations
.IsRequired()
.HasColumnType("TEXT");
+ b.Property<string>("Username")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
b.HasKey("Id");
b.ToTable("AccessTokens");
@@ -78,6 +82,10 @@ namespace VPNAuth.Server.Migrations
b.Property<string>("State")
.HasColumnType("TEXT");
+ b.Property<string>("Username")
+ .IsRequired()
+ .HasColumnType("TEXT");
+
b.HasKey("Id");
b.ToTable("AuthRequests");