summaryrefslogtreecommitdiff
path: root/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs
diff options
context:
space:
mode:
authorTim <contact@bytim.eu>2025-04-19 12:16:15 +0200
committerTim <contact@bytim.eu>2025-04-19 12:16:15 +0200
commitff9b1e112ed14746ed74dfff1fb4c19efd5502d4 (patch)
tree5ab9831c7be0c0ff344feb06e049115d6a58287a /VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs
parent4b2ad030fa381662f4b0c2464e97b0d2c5f6a716 (diff)
downloadVPNAuth-ff9b1e112ed14746ed74dfff1fb4c19efd5502d4.tar.xz
VPNAuth-ff9b1e112ed14746ed74dfff1fb4c19efd5502d4.zip
Add user information settings
Diffstat (limited to 'VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs')
-rw-r--r--VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs b/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs
index d735267..e4643df 100644
--- a/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs
+++ b/VPNAuth.Server/Migrations/DatabaseModelSnapshot.cs
@@ -82,6 +82,38 @@ namespace VPNAuth.Server.Migrations
b.ToTable("AuthRequests");
});
+
+ modelBuilder.Entity("VPNAuth.Server.Database.UserInformation", b =>
+ {
+ b.Property<int>("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("INTEGER");
+
+ b.Property<string>("Email")
+ .HasColumnType("TEXT");
+
+ b.Property<string>("FamilyName")
+ .HasColumnType("TEXT");
+
+ b.Property<string>("GivenName")
+ .HasColumnType("TEXT");
+
+ b.Property<string>("Name")
+ .HasColumnType("TEXT");
+
+ b.Property<string>("Picture")
+ .HasColumnType("TEXT");
+
+ b.Property<string>("PreferredUsername")
+ .HasColumnType("TEXT");
+
+ b.Property<string>("Sub")
+ .HasColumnType("TEXT");
+
+ b.HasKey("Id");
+
+ b.ToTable("UserInformation");
+ });
#pragma warning restore 612, 618
}
}