Fix beatmap difficulty and metadata deletion

This commit is contained in:
Dean Herbert
2017-10-19 17:50:46 +09:00
parent b02dd196f6
commit f7d0df1743
2 changed files with 16 additions and 1 deletions

View File

@ -16,6 +16,8 @@ namespace osu.Game.Database
public class OsuDbContext : DbContext
{
public DbSet<BeatmapInfo> BeatmapInfo { get; set; }
public DbSet<BeatmapDifficulty> BeatmapDifficulty { get; set; }
public DbSet<BeatmapMetadata> BeatmapMetadata { get; set; }
public DbSet<BeatmapSetInfo> BeatmapSetInfo { get; set; }
public DbSet<DatabasedKeyBinding> DatabasedKeyBinding { get; set; }
public DbSet<FileInfo> FileInfo { get; set; }