Add time index to connection log (#29281)

* Add time index to connection log

Queries go nyoom.

* Don't let me code shit at 5 AM
This commit is contained in:
Pieter-Jan Briers
2024-06-21 15:29:10 +02:00
committed by GitHub
parent 730a4d289d
commit f041f58a6d
7 changed files with 3816 additions and 0 deletions

View File

@@ -528,6 +528,8 @@ namespace Content.Server.Database.Migrations.Sqlite
b.HasIndex("ServerId")
.HasDatabaseName("IX_connection_log_server_id");
b.HasIndex("Time");
b.HasIndex("UserId");
b.ToTable("connection_log", (string)null);