355 lines
14 KiB
C#
355 lines
14 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using AutobusApi.Infrastructure.Identity;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace AutobusApi.Infrastructure.Identity.Migrations
|
|
{
|
|
[DbContext(typeof(ApplicationIdentityDbContext))]
|
|
partial class ApplicationIdentityDbContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasDefaultSchema("identity")
|
|
.HasAnnotation("ProductVersion", "7.0.13")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("AutobusApi.Infrastructure.Identity.ApplicationUser", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasColumnName("id");
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("AccessFailedCount")
|
|
.HasColumnType("integer")
|
|
.HasColumnName("access_failed_count");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasColumnType("text")
|
|
.HasColumnName("concurrency_stamp");
|
|
|
|
b.Property<string>("Email")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("email");
|
|
|
|
b.Property<bool>("EmailConfirmed")
|
|
.HasColumnType("boolean")
|
|
.HasColumnName("email_confirmed");
|
|
|
|
b.Property<bool>("LockoutEnabled")
|
|
.HasColumnType("boolean")
|
|
.HasColumnName("lockout_enabled");
|
|
|
|
b.Property<DateTimeOffset?>("LockoutEnd")
|
|
.HasColumnType("timestamp with time zone")
|
|
.HasColumnName("lockout_end");
|
|
|
|
b.Property<string>("NormalizedEmail")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("normalized_email");
|
|
|
|
b.Property<string>("NormalizedUserName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("PasswordHash")
|
|
.HasColumnType("text")
|
|
.HasColumnName("password_hash");
|
|
|
|
b.Property<string>("SecurityStamp")
|
|
.HasColumnType("text")
|
|
.HasColumnName("security_stamp");
|
|
|
|
b.Property<bool>("TwoFactorEnabled")
|
|
.HasColumnType("boolean")
|
|
.HasColumnName("two_factor_enabled");
|
|
|
|
b.Property<string>("UserName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("NormalizedEmail")
|
|
.HasDatabaseName("EmailIndex");
|
|
|
|
b.HasIndex("NormalizedUserName")
|
|
.IsUnique()
|
|
.HasDatabaseName("UserNameIndex");
|
|
|
|
b.ToTable("identity_users", "identity");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole<int>", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasColumnName("id");
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.HasColumnType("text")
|
|
.HasColumnName("concurrency_stamp");
|
|
|
|
b.Property<string>("Name")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("name");
|
|
|
|
b.Property<string>("NormalizedName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("normalized_name");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("NormalizedName")
|
|
.IsUnique()
|
|
.HasDatabaseName("RoleNameIndex");
|
|
|
|
b.ToTable("identity_roles", "identity");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<int>", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasColumnName("id");
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<string>("ClaimType")
|
|
.HasColumnType("text")
|
|
.HasColumnName("claim_type");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasColumnType("text")
|
|
.HasColumnName("claim_value");
|
|
|
|
b.Property<int>("RoleId")
|
|
.HasColumnType("integer")
|
|
.HasColumnName("role_id");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.ToTable("identity_role_claims", "identity");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<int>", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasColumnName("id");
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<string>("ClaimType")
|
|
.HasColumnType("text")
|
|
.HasColumnName("claim_type");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasColumnType("text")
|
|
.HasColumnName("claim_value");
|
|
|
|
b.Property<int>("UserId")
|
|
.HasColumnType("integer")
|
|
.HasColumnName("user_id");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("identity_user_claims", "identity");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<int>", b =>
|
|
{
|
|
b.Property<string>("LoginProvider")
|
|
.HasColumnType("text")
|
|
.HasColumnName("login_provider");
|
|
|
|
b.Property<string>("ProviderKey")
|
|
.HasColumnType("text")
|
|
.HasColumnName("provider_key");
|
|
|
|
b.Property<string>("ProviderDisplayName")
|
|
.HasColumnType("text")
|
|
.HasColumnName("provider_display_name");
|
|
|
|
b.Property<int>("UserId")
|
|
.HasColumnType("integer")
|
|
.HasColumnName("user_id");
|
|
|
|
b.HasKey("LoginProvider", "ProviderKey");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("identity_user_logins", "identity");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<int>", b =>
|
|
{
|
|
b.Property<int>("UserId")
|
|
.HasColumnType("integer")
|
|
.HasColumnName("user_id");
|
|
|
|
b.Property<int>("RoleId")
|
|
.HasColumnType("integer")
|
|
.HasColumnName("role_id");
|
|
|
|
b.HasKey("UserId", "RoleId");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.ToTable("identity_user_roles", "identity");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<int>", b =>
|
|
{
|
|
b.Property<int>("UserId")
|
|
.HasColumnType("integer")
|
|
.HasColumnName("user_id");
|
|
|
|
b.Property<string>("LoginProvider")
|
|
.HasColumnType("text")
|
|
.HasColumnName("login_provider");
|
|
|
|
b.Property<string>("Name")
|
|
.HasColumnType("text")
|
|
.HasColumnName("name");
|
|
|
|
b.Property<string>("Value")
|
|
.HasColumnType("text")
|
|
.HasColumnName("value");
|
|
|
|
b.HasKey("UserId", "LoginProvider", "Name");
|
|
|
|
b.ToTable("identity_user_tokens", "identity");
|
|
});
|
|
|
|
modelBuilder.Entity("AutobusApi.Infrastructure.Identity.ApplicationUser", b =>
|
|
{
|
|
b.OwnsMany("AutobusApi.Infrastructure.Identity.RefreshToken", "RefreshTokens", b1 =>
|
|
{
|
|
b1.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int")
|
|
.HasColumnName("id");
|
|
|
|
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b1.Property<int>("Id"));
|
|
|
|
b1.Property<int>("ApplicationUserId")
|
|
.HasColumnType("int")
|
|
.HasColumnName("identity_user_id");
|
|
|
|
b1.Property<DateTime>("CreationDateTimeUtc")
|
|
.HasColumnType("timestamptz")
|
|
.HasColumnName("creation_timestamp_utc");
|
|
|
|
b1.Property<DateTime>("ExpirationDateTimeUtc")
|
|
.HasColumnType("timestamptz")
|
|
.HasColumnName("expiration_timestamp_utc");
|
|
|
|
b1.Property<DateTime?>("RevokationDateTimeUtc")
|
|
.HasColumnType("timestamptz")
|
|
.HasColumnName("revokation_timestamp_utc");
|
|
|
|
b1.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasColumnType("varchar(256)")
|
|
.HasColumnName("value");
|
|
|
|
b1.HasKey("Id")
|
|
.HasName("id");
|
|
|
|
b1.HasIndex("ApplicationUserId");
|
|
|
|
b1.ToTable("identity_user_refresh_tokens", "identity");
|
|
|
|
b1.WithOwner("ApplicationUser")
|
|
.HasForeignKey("ApplicationUserId")
|
|
.HasConstraintName("fk_identityUserRefreshTokens_identityUser_userId");
|
|
|
|
b1.Navigation("ApplicationUser");
|
|
});
|
|
|
|
b.Navigation("RefreshTokens");
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<int>", b =>
|
|
{
|
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole<int>", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<int>", b =>
|
|
{
|
|
b.HasOne("AutobusApi.Infrastructure.Identity.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<int>", b =>
|
|
{
|
|
b.HasOne("AutobusApi.Infrastructure.Identity.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<int>", b =>
|
|
{
|
|
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole<int>", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("AutobusApi.Infrastructure.Identity.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<int>", b =>
|
|
{
|
|
b.HasOne("AutobusApi.Infrastructure.Identity.ApplicationUser", null)
|
|
.WithMany()
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|