mirror of
https://github.com/osukey/osukey.git
synced 2025-05-30 01:47:30 +09:00
Allow recovery from a very broken database
This commit is contained in:
parent
9b1ed5b3aa
commit
efaf98c5cf
@ -160,7 +160,14 @@ namespace osu.Game.Database
|
|||||||
public void Migrate()
|
public void Migrate()
|
||||||
{
|
{
|
||||||
migrateFromSqliteNet();
|
migrateFromSqliteNet();
|
||||||
Database.Migrate();
|
try
|
||||||
|
{
|
||||||
|
Database.Migrate();
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
throw new MigrationFailedException();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void migrateFromSqliteNet()
|
private void migrateFromSqliteNet()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user