1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00

Uncomment EF deletion lines in migrations

This commit is contained in:
Dean Herbert 2022-01-13 18:28:00 +09:00
parent 4f8d29c1c0
commit 2840a71dda

View File

@ -133,7 +133,7 @@ namespace osu.Game.Database
}
}
// db.Context.RemoveRange(existingBeatmapSets);
db.Context.RemoveRange(existingBeatmapSets);
// Intentionally don't clean up the files, so they don't get purged by EF.
transaction.Commit();
@ -195,7 +195,7 @@ namespace osu.Game.Database
}
}
// db.Context.RemoveRange(existingScores);
db.Context.RemoveRange(existingScores);
// Intentionally don't clean up the files, so they don't get purged by EF.
transaction.Commit();