2022-11-18 03:33:03 +03:00
|
|
|
|
// <auto-generated />
|
|
|
|
|
using System;
|
|
|
|
|
using CodeLiturgy.Domain;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
|
|
|
|
|
|
#nullable disable
|
|
|
|
|
|
|
|
|
|
namespace CodeLiturgy.Views.Migrations
|
|
|
|
|
{
|
|
|
|
|
[DbContext(typeof(ApplicationUserDbContext))]
|
|
|
|
|
partial class ApplicationUserDbContextModelSnapshot : ModelSnapshot
|
|
|
|
|
{
|
|
|
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
|
|
|
{
|
|
|
|
|
#pragma warning disable 612, 618
|
|
|
|
|
modelBuilder
|
2022-11-30 18:52:55 +03:00
|
|
|
|
.HasAnnotation("ProductVersion", "6.0.11")
|
2022-11-18 03:33:03 +03:00
|
|
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
|
|
|
|
|
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Site", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTime>("CreatedDate")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Domain")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("EnvironmentId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTime>("LastChanged")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
2022-11-30 18:52:55 +03:00
|
|
|
|
b.Property<int>("SiteType")
|
|
|
|
|
.HasColumnType("integer");
|
|
|
|
|
|
2022-11-18 03:33:03 +03:00
|
|
|
|
b.Property<string>("UrlAddress")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
2022-11-30 18:52:55 +03:00
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
2022-11-18 03:33:03 +03:00
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("EnvironmentId");
|
|
|
|
|
|
2022-11-30 18:52:55 +03:00
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
|
|
2022-11-18 03:33:03 +03:00
|
|
|
|
b.ToTable("Site");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.SiteEnvironment", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("Id")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
|
|
2022-11-30 18:52:55 +03:00
|
|
|
|
b.ToTable("SiteEnvironment");
|
2022-11-18 03:33:03 +03:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationRole", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("Id")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
|
|
|
.IsConcurrencyToken()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("NormalizedName")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("NormalizedName")
|
|
|
|
|
.IsUnique()
|
|
|
|
|
.HasDatabaseName("RoleNameIndex");
|
|
|
|
|
|
2022-11-30 18:52:55 +03:00
|
|
|
|
b.ToTable("Roles", (string)null);
|
2022-11-18 03:33:03 +03:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationRoleClaim", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<int>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("integer");
|
|
|
|
|
|
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ApplicationRoleId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ClaimType")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ClaimValue")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("RoleId")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("ApplicationRoleId");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
|
|
2022-11-30 18:52:55 +03:00
|
|
|
|
b.ToTable("RoleClaims", (string)null);
|
2022-11-18 03:33:03 +03:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationUser", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("Id")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<int>("AccessFailedCount")
|
|
|
|
|
.HasColumnType("integer");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
|
|
|
.IsConcurrencyToken()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Email")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("EmailConfirmed")
|
|
|
|
|
.HasColumnType("boolean");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("LockoutEnabled")
|
|
|
|
|
.HasColumnType("boolean");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset?>("LockoutEnd")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("NormalizedEmail")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("NormalizedUserName")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("PasswordHash")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("PhoneNumber")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("PhoneNumberConfirmed")
|
|
|
|
|
.HasColumnType("boolean");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("SecurityStamp")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<bool>("TwoFactorEnabled")
|
|
|
|
|
.HasColumnType("boolean");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("UserName")
|
|
|
|
|
.HasMaxLength(256)
|
|
|
|
|
.HasColumnType("character varying(256)");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("NormalizedEmail")
|
|
|
|
|
.HasDatabaseName("EmailIndex");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("NormalizedUserName")
|
|
|
|
|
.IsUnique()
|
|
|
|
|
.HasDatabaseName("UserNameIndex");
|
|
|
|
|
|
2022-11-30 18:52:55 +03:00
|
|
|
|
b.ToTable("ApplicationUser", (string)null);
|
2022-11-18 03:33:03 +03:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationUserClaim", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<int>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("integer");
|
|
|
|
|
|
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ApplicationUserId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ClaimType")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ClaimValue")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("ApplicationUserId");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
|
|
|
|
|
|
b.ToTable("AspNetUserClaims", (string)null);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationUserLogin", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("LoginProvider")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ProviderKey")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ProviderDisplayName")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("LoginProvider", "ProviderKey");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
|
|
|
|
|
|
b.ToTable("AspNetUserLogins", (string)null);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationUserRole", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("RoleId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ApplicationRoleId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("UserId", "RoleId");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("ApplicationRoleId");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
|
|
2022-11-30 18:52:55 +03:00
|
|
|
|
b.ToTable("UserRole", (string)null);
|
2022-11-18 03:33:03 +03:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationUserToken", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<string>("UserId")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("LoginProvider")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Id")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Value")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.HasKey("UserId", "LoginProvider", "Name");
|
|
|
|
|
|
|
|
|
|
b.ToTable("AspNetUserTokens", (string)null);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Site", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.SiteEnvironment", "Environment")
|
|
|
|
|
.WithMany("Sites")
|
|
|
|
|
.HasForeignKey("EnvironmentId");
|
|
|
|
|
|
2022-11-30 18:52:55 +03:00
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.Users.ApplicationUser", "User")
|
|
|
|
|
.WithMany("Sites")
|
|
|
|
|
.HasForeignKey("UserId");
|
|
|
|
|
|
2022-11-18 03:33:03 +03:00
|
|
|
|
b.Navigation("Environment");
|
2022-11-30 18:52:55 +03:00
|
|
|
|
|
|
|
|
|
b.Navigation("User");
|
2022-11-18 03:33:03 +03:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.SiteEnvironment", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.Users.ApplicationUser", "User")
|
|
|
|
|
.WithMany("Environments")
|
|
|
|
|
.HasForeignKey("UserId");
|
|
|
|
|
|
|
|
|
|
b.Navigation("User");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationRoleClaim", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.Users.ApplicationRole", "ApplicationRole")
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("ApplicationRoleId");
|
|
|
|
|
|
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.Users.ApplicationRole", null)
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("RoleId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
|
|
|
|
|
b.Navigation("ApplicationRole");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationUserClaim", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.Users.ApplicationUser", "ApplicationUser")
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("ApplicationUserId");
|
|
|
|
|
|
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.Users.ApplicationUser", null)
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("UserId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
|
|
|
|
|
b.Navigation("ApplicationUser");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationUserLogin", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.Users.ApplicationUser", null)
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("UserId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationUserRole", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.Users.ApplicationRole", "ApplicationRole")
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("ApplicationRoleId");
|
|
|
|
|
|
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.Users.ApplicationRole", null)
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("RoleId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
|
2022-11-30 18:52:55 +03:00
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.Users.ApplicationUser", "User")
|
2022-11-18 03:33:03 +03:00
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("UserId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
|
|
|
|
|
b.Navigation("ApplicationRole");
|
|
|
|
|
|
|
|
|
|
b.Navigation("User");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationUserToken", b =>
|
|
|
|
|
{
|
|
|
|
|
b.HasOne("CodeLiturgy.Data.Application.Users.ApplicationUser", null)
|
|
|
|
|
.WithMany()
|
|
|
|
|
.HasForeignKey("UserId")
|
|
|
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
|
|
|
.IsRequired();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.SiteEnvironment", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Navigation("Sites");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("CodeLiturgy.Data.Application.Users.ApplicationUser", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Navigation("Environments");
|
2022-11-30 18:52:55 +03:00
|
|
|
|
|
|
|
|
|
b.Navigation("Sites");
|
2022-11-18 03:33:03 +03:00
|
|
|
|
});
|
|
|
|
|
#pragma warning restore 612, 618
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|