mirror of https://github.com/ppy/osu
Merge pull request #13780 from peppy/disable-foreign-keys
Disable foreign key enforcing at an sqlite level
This commit is contained in:
commit
28faa8c330
|
@ -77,6 +77,9 @@ public OsuDbContext(string connectionString)
|
||||||
{
|
{
|
||||||
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