MetadataID -> BeatmapMetadataID

This commit is contained in:
Drew DeVault
2016-10-04 14:04:10 -04:00
parent 72c4a26aea
commit f6b6446a9c

View File

@ -8,7 +8,7 @@ namespace osu.Game.Database
[PrimaryKey] [PrimaryKey]
public int BeatmapSetID { get; set; } public int BeatmapSetID { get; set; }
[NotNull, Indexed] [NotNull, Indexed]
public int MetadataID { get; set; } public int BeatmapMetadataID { get; set; }
} }
} }