diff --git a/osu.Game/Beatmaps/BeatmapDatabase.cs b/osu.Game/Beatmaps/BeatmapDatabase.cs index 2e8e5da65b..ca607c87eb 100644 --- a/osu.Game/Beatmaps/BeatmapDatabase.cs +++ b/osu.Game/Beatmaps/BeatmapDatabase.cs @@ -32,11 +32,6 @@ namespace osu.Game.Beatmaps protected override void Prepare(bool reset = false) { - Connection.CreateTable(); - Connection.CreateTable(); - Connection.CreateTable(); - Connection.CreateTable(); - if (reset) { Connection.DropTable(); @@ -45,6 +40,11 @@ namespace osu.Game.Beatmaps Connection.DropTable(); } + Connection.CreateTable(); + Connection.CreateTable(); + Connection.CreateTable(); + Connection.CreateTable(); + deletePending(); }