mirror of
https://github.com/ppy/osu.git
synced 2025-01-06 07:02:54 +08:00
Disable foreign key enforcing at an sqlite level
This commit is contained in:
parent
b7180f16c5
commit
1e4beddd2d
@ -77,6 +77,9 @@ namespace osu.Game.Database
|
|||||||
{
|
{
|
||||||
cmd.CommandText = "PRAGMA journal_mode=WAL;";
|
cmd.CommandText = "PRAGMA journal_mode=WAL;";
|
||||||
cmd.ExecuteNonQuery();
|
cmd.ExecuteNonQuery();
|
||||||
|
|
||||||
|
cmd.CommandText = "PRAGMA foreign_keys=OFF;";
|
||||||
|
cmd.ExecuteNonQuery();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch
|
catch
|
||||||
|
Loading…
Reference in New Issue
Block a user