Merge pull request #13780 from peppy/disable-foreign-keys

Disable foreign key enforcing at an sqlite level
This commit is contained in:
Dan Balasescu 2021-07-05 19:08:10 +09:00 committed by GitHub
commit 28faa8c330
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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