Remove autogenerated from admin log key. (#18377)

This commit is contained in:
Pieter-Jan Briers
2023-07-29 08:44:28 +02:00
committed by GitHub
parent 253136b0b6
commit 7c9d7423d2
7 changed files with 3525 additions and 7 deletions

View File

@@ -85,12 +85,9 @@ namespace Content.Server.Database.Migrations.Postgres
modelBuilder.Entity("Content.Server.Database.AdminLog", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer")
.HasColumnName("admin_log_id");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<int>("RoundId")
.HasColumnType("integer")
.HasColumnName("round_id");