Re-migrate

This commit is contained in:
Dean Herbert
2018-11-30 16:35:57 +09:00
parent 3727955911
commit 58293c3eae
3 changed files with 18 additions and 12 deletions

View File

@ -323,7 +323,8 @@ namespace osu.Game.Migrations
b.Property<int>("MaxCombo");
b.Property<string>("ModsString");
b.Property<string>("ModsJson")
.HasColumnName("Mods");
b.Property<long?>("OnlineScoreID");
@ -333,11 +334,13 @@ namespace osu.Game.Migrations
b.Property<int>("RulesetID");
b.Property<string>("StatisticsString");
b.Property<string>("StatisticsJson")
.HasColumnName("Statistics");
b.Property<double>("TotalScore");
b.Property<string>("UserString");
b.Property<string>("UserString")
.HasColumnName("User");
b.HasKey("ID");
@ -444,7 +447,7 @@ namespace osu.Game.Migrations
modelBuilder.Entity("osu.Game.Scoring.ScoreInfo", b =>
{
b.HasOne("osu.Game.Beatmaps.BeatmapInfo", "BeatmapInfo")
b.HasOne("osu.Game.Beatmaps.BeatmapInfo", "Beatmap")
.WithMany()
.HasForeignKey("BeatmapInfoID")
.OnDelete(DeleteBehavior.Cascade);