Fix user ID not being added to database

Needed for avatar retrieval
This commit is contained in:
David Zhao
2019-02-23 17:04:02 +09:00
parent 31bbefb9a8
commit 809ab86ed0
4 changed files with 523 additions and 2 deletions

View File

@ -14,7 +14,7 @@ namespace osu.Game.Migrations
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "2.2.0-rtm-35687");
.HasAnnotation("ProductVersion", "2.2.1-servicing-10028");
modelBuilder.Entity("osu.Game.Beatmaps.BeatmapDifficulty", b =>
{
@ -338,6 +338,9 @@ namespace osu.Game.Migrations
b.Property<int>("TotalScore");
b.Property<long>("UserID")
.HasColumnName("UserID");
b.Property<string>("UserString")
.HasColumnName("User");