Fix admin log indices. (#7920)
This commit is contained in:
committed by
GitHub
parent
faec39da2b
commit
fc119befca
@@ -120,9 +120,13 @@ namespace Content.Server.Database.Migrations.Postgres
|
||||
b.HasKey("Id", "RoundId")
|
||||
.HasName("PK_admin_log");
|
||||
|
||||
b.HasIndex("Date");
|
||||
|
||||
b.HasIndex("Message")
|
||||
.HasAnnotation("Npgsql:TsVectorConfig", "english");
|
||||
|
||||
NpgsqlIndexBuilderExtensions.HasMethod(b.HasIndex("Message"), "GIN");
|
||||
|
||||
b.HasIndex("RoundId")
|
||||
.HasDatabaseName("IX_admin_log_round_id");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user