Add prefix Online to BeatmapID and BeatmapSetID

This commit is contained in:
柯十六夜
2017-01-09 21:05:01 +08:00
parent c940b48bba
commit acfbf2e32e
9 changed files with 27 additions and 24 deletions

View File

@ -16,9 +16,9 @@ namespace osu.Game.Database
[PrimaryKey, AutoIncrement]
public int ID { get; set; }
public int BeatmapID { get; set; } = 0;
public int? OnlineBeatmapID { get; set; } = null;
public int BeatmapSetID { get; set; } = -1;
public int? OnlineBeatmapSetID { get; set; } = null;
[ForeignKey(typeof(BeatmapSetInfo))]
public int BeatmapSetInfoID { get; set; }