diff --git a/osu.Game/Database/OsuDbContext.cs b/osu.Game/Database/OsuDbContext.cs index 4e663159ff..1e3d76789d 100644 --- a/osu.Game/Database/OsuDbContext.cs +++ b/osu.Game/Database/OsuDbContext.cs @@ -160,7 +160,14 @@ namespace osu.Game.Database public void Migrate() { migrateFromSqliteNet(); - Database.Migrate(); + try + { + Database.Migrate(); + } + catch + { + throw new MigrationFailedException(); + } } private void migrateFromSqliteNet()