1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 16:27:26 +08:00

Allow recovery from a very broken database

This commit is contained in:
Dean Herbert 2017-10-20 00:48:27 +09:00
parent 9b1ed5b3aa
commit efaf98c5cf

View File

@ -160,7 +160,14 @@ namespace osu.Game.Database
public void Migrate()
{
migrateFromSqliteNet();
Database.Migrate();
try
{
Database.Migrate();
}
catch
{
throw new MigrationFailedException();
}
}
private void migrateFromSqliteNet()