Add database tracking of beatmap creator user_ids

This commit is contained in:
Dean Herbert
2021-05-14 15:40:29 +09:00
parent 1d4bcbaa6e
commit 32ff406289
5 changed files with 570 additions and 14 deletions

View File

@ -126,6 +126,9 @@ namespace osu.Game.Migrations
b.Property<string>("AudioFile");
b.Property<int>("AuthorID")
.HasColumnName("AuthorID");
b.Property<string>("AuthorString")
.HasColumnName("Author");