mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Symplified migration using MigrateTable<> instead of commands
This commit is contained in:
@ -79,7 +79,7 @@ namespace osu.Game.Beatmaps
|
||||
break;
|
||||
case 3:
|
||||
// Added MD5Hash column to BeatmapInfo
|
||||
Connection.CreateCommand("ALTER TABLE BeatmapInfo ADD COLUMN MD5Hash varchar").ExecuteNonQuery();
|
||||
Connection.MigrateTable<BeatmapInfo>();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user