mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-10 04:19:31 +02:00
pisua
This commit is contained in:
@@ -113,7 +113,7 @@ namespace DiscordApp.Migrations
|
||||
|
||||
b.HasIndex("ApplicantId");
|
||||
|
||||
b.ToTable("Bizness");
|
||||
b.ToTable("Bizness", "public");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DiscordApp.Database.Tables.BooksPatents", b =>
|
||||
@@ -193,6 +193,26 @@ namespace DiscordApp.Migrations
|
||||
b.ToTable("Passport", "public");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DiscordApp.Database.Tables.Reports", b =>
|
||||
{
|
||||
b.Property<int>("Id")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer");
|
||||
|
||||
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<string>("Employee")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<int>("type")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Reports", "public");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DiscordApp.Database.Tables.ArtsPatents", b =>
|
||||
{
|
||||
b.HasOne("DiscordApp.Database.Tables.Passport", "passport")
|
||||
|
||||
Reference in New Issue
Block a user