Merge remote-tracking branch 'upstream/master' into scoredatabase

This commit is contained in:
Dean Herbert
2018-11-30 17:20:23 +09:00
12 changed files with 575 additions and 92 deletions

View File

@ -384,10 +384,17 @@ namespace osu.Game.Migrations
b.Property<bool>("DeletePending");
b.Property<string>("Hash");
b.Property<string>("Name");
b.HasKey("ID");
b.HasIndex("DeletePending");
b.HasIndex("Hash")
.IsUnique();
b.ToTable("SkinInfo");
});