Separate out startup tasks to ensure they run after migrations

This commit is contained in:
Dean Herbert
2017-08-01 10:08:05 +09:00
parent 404497fa10
commit c060d32765
3 changed files with 30 additions and 6 deletions

View File

@ -38,7 +38,11 @@ namespace osu.Game.IO
Connection.DropTable<FileInfo>();
Connection.CreateTable<FileInfo>();
}
protected override void StartupTasks()
{
base.StartupTasks();
deletePending();
}