1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

finish color code support (I think)

This commit is contained in:
RaidMax
2019-08-02 18:04:34 -05:00
parent 9cf5fad387
commit 8bd67a1629
35 changed files with 990 additions and 70 deletions

View File

@ -14,7 +14,7 @@ namespace SharedLibraryCore.Migrations
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "2.2.4-servicing-10062");
.HasAnnotation("ProductVersion", "2.2.6-servicing-10079");
modelBuilder.Entity("IW4MAdmin.Plugins.Stats.Models.EFACSnapshot", b =>
{
@ -329,6 +329,9 @@ namespace SharedLibraryCore.Migrations
.IsRequired()
.HasMaxLength(24);
b.Property<string>("SearchableName")
.HasMaxLength(24);
b.HasKey("AliasId");
b.HasIndex("IPAddress");
@ -337,6 +340,8 @@ namespace SharedLibraryCore.Migrations
b.HasIndex("Name");
b.HasIndex("SearchableName");
b.ToTable("EFAlias");
});