Stop all reads/writes to the admin_log_entity table (#21186)

This commit is contained in:
DrSmugleaf
2023-10-22 21:24:03 -07:00
committed by GitHub
parent 43d5c00648
commit 52e1d64ee2
3 changed files with 9 additions and 22 deletions

View File

@@ -517,6 +517,7 @@ namespace Content.Server.Database
public List<AdminLogPlayer> Players { get; set; } = default!;
// Unused
public List<AdminLogEntity> Entities { get; set; } = default!;
}
@@ -530,6 +531,7 @@ namespace Content.Server.Database
[ForeignKey("LogId,RoundId")] public AdminLog Log { get; set; } = default!;
}
// Unused
public class AdminLogEntity
{
[Required, Key] public int Uid { get; set; }