[#2570] use ON for consistency with the SQLite examples and updated collection delete test to check for _exterAuths references

This commit is contained in:
Gani Georgiev
2023-05-25 20:26:03 +03:00
parent c72c951b24
commit 833a84b3d7
2 changed files with 26 additions and 5 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ func initPragmas(db *dbx.DB) error {
PRAGMA journal_mode = WAL;
PRAGMA journal_size_limit = 200000000;
PRAGMA synchronous = NORMAL;
PRAGMA foreign_keys = TRUE;
PRAGMA foreign_keys = ON;
`).Execute()
return err