summaryrefslogtreecommitdiffstats
path: root/server/src/Migrations/AppDbContextModelSnapshot.cs
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/Migrations/AppDbContextModelSnapshot.cs')
-rw-r--r--server/src/Migrations/AppDbContextModelSnapshot.cs25
1 files changed, 24 insertions, 1 deletions
diff --git a/server/src/Migrations/AppDbContextModelSnapshot.cs b/server/src/Migrations/AppDbContextModelSnapshot.cs
index 70582b5..128d3b6 100644
--- a/server/src/Migrations/AppDbContextModelSnapshot.cs
+++ b/server/src/Migrations/AppDbContextModelSnapshot.cs
@@ -17,7 +17,7 @@ namespace IOL.GreatOffice.Api.Migrations
{
#pragma warning disable 612, 618
modelBuilder
- .HasAnnotation("ProductVersion", "6.0.5")
+ .HasAnnotation("ProductVersion", "6.0.6")
.HasAnnotation("Relational:MaxIdentifierLength", 63);
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
@@ -412,6 +412,29 @@ namespace IOL.GreatOffice.Api.Migrations
b.ToTable("users", (string)null);
});
+ modelBuilder.Entity("Microsoft.AspNetCore.DataProtection.EntityFrameworkCore.DataProtectionKey", b =>
+ {
+ b.Property<int>("Id")
+ .ValueGeneratedOnAdd()
+ .HasColumnType("integer")
+ .HasColumnName("id");
+
+ NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
+
+ b.Property<string>("FriendlyName")
+ .HasColumnType("text")
+ .HasColumnName("friendly_name");
+
+ b.Property<string>("Xml")
+ .HasColumnType("text")
+ .HasColumnName("xml");
+
+ b.HasKey("Id")
+ .HasName("pk_data_protection_keys");
+
+ b.ToTable("data_protection_keys", (string)null);
+ });
+
modelBuilder.Entity("TenantUser", b =>
{
b.Property<Guid>("TenantsId")