// using DiscordApp.Database; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace DiscordApp.Migrations { [DbContext(typeof(AppDbContext))] [Migration("20231029124001_InitMigrate")] partial class InitMigrate { /// protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "7.0.13") .HasAnnotation("Relational:MaxIdentifierLength", 63); NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); modelBuilder.Entity("DiscordApp.Database.Tables.Autobranches", b => { b.Property("ChannelId") .ValueGeneratedOnAdd() .HasColumnType("numeric(20,0)"); b.Property("BranchName") .IsRequired() .HasColumnType("text"); b.HasKey("ChannelId"); b.ToTable("Autobranches", "public"); }); modelBuilder.Entity("DiscordApp.Database.Tables.Passport", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("integer"); NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); b.Property("Applicant") .IsRequired() .HasColumnType("text"); b.Property("Date") .HasColumnType("bigint"); b.Property("Employee") .HasColumnType("numeric(20,0)"); b.Property("Gender") .IsRequired() .HasColumnType("text"); b.Property("RpName") .IsRequired() .HasColumnType("text"); b.Property("Support") .HasColumnType("integer"); b.Property("birthDate") .HasColumnType("bigint"); b.HasKey("Id"); b.ToTable("Passport", "public"); }); #pragma warning restore 612, 618 } } }