Skip to content

Commit

Permalink
block -scope humanoidcharacterprofile
Browse files Browse the repository at this point in the history
  • Loading branch information
DEATHB4DEFEAT committed Mar 25, 2024
1 parent cd0e6d6 commit 472d659
Show file tree
Hide file tree
Showing 3 changed files with 535 additions and 523 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1195,25 +1195,31 @@ protected override void BuildModel(ModelBuilder modelBuilder)
});

modelBuilder.Entity("Content.Server.Database.Loadout", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer")
.HasColumnName("loadout_id");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<int>("ProfileId")
.HasColumnType("integer")
.HasColumnName("profile_id");
b.Property<string>("LoadoutName")
.IsRequired()
.HasColumnType("text")
.HasColumnName("loadout_name");
b.HasKey("Id")
.HasName("PK_loadout");
b.HasIndex("ProfileId")
.HasDatabaseName("IX_loadout_profile_id");
b.ToTable("loadout", (string)null);
});
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer")
.HasColumnName("loadout_id");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<int>("ProfileId")
.HasColumnType("integer")
.HasColumnName("profile_id");
b.Property<string>("LoadoutName")
.IsRequired()
.HasColumnType("text")
.HasColumnName("loadout_name");
b.HasKey("Id")
.HasName("PK_loadout");
b.HasIndex("ProfileId")
.HasDatabaseName("IX_loadout_profile_id");
b.ToTable("loadout", (string)null);
});

modelBuilder.Entity("Content.Server.Database.UploadedResourceLog", b =>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1133,17 +1133,22 @@ protected override void BuildModel(ModelBuilder modelBuilder)
.ValueGeneratedOnAdd()
.HasColumnType("INTEGER")
.HasColumnName("loadout_id");
b.Property<int>("ProfileId")
.HasColumnType("INTEGER")
.HasColumnName("profile_id");
b.Property<string>("LoadoutName")
.IsRequired()
.HasColumnType("TEXT")
.HasColumnName("loadout_name");
b.HasKey("Id")
.HasName("PK_loadout");
b.HasIndex("ProfileId")
.HasDatabaseName("IX_loadout_profile_id");
b.ToTable("loadout", (string)null);
});

Expand Down
Loading

0 comments on commit 472d659

Please sign in to comment.