Update RulesetInfo and add migration

This commit is contained in:
Dean Herbert
2017-12-09 12:56:44 +09:00
parent 679134c030
commit d02e1ae896
7 changed files with 360 additions and 1 deletions

View File

@ -247,10 +247,15 @@ namespace osu.Game.Migrations
b.Property<string>("Name");
b.Property<string>("ShortName");
b.HasKey("ID");
b.HasIndex("Available");
b.HasIndex("ShortName")
.IsUnique();
b.ToTable("RulesetInfo");
});