mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-14 09:08:32 -05:00
update for database provider specific migrations
fix issues with live radar
This commit is contained in:
@ -25,10 +25,12 @@ namespace Stats.Models
|
||||
|
||||
builder.Entity<EFRating>()
|
||||
.HasIndex(p => new { p.When, p.ServerId, p.Performance, p.ActivityAmount });
|
||||
|
||||
builder.Entity<EFClientMessage>()
|
||||
.HasIndex(p => p.TimeSent);
|
||||
|
||||
builder.Entity<EFClientMessage>(message =>
|
||||
{
|
||||
message.HasIndex(p => p.TimeSent);
|
||||
});
|
||||
|
||||
// force pluralization
|
||||
builder.Entity<EFClientKill>().ToTable("EFClientKills");
|
||||
builder.Entity<EFClientMessage>().ToTable("EFClientMessages");
|
||||
|
Reference in New Issue
Block a user