From 4e19a18aedf46b0efac1f0911fa39014fb3de3fc Mon Sep 17 00:00:00 2001 From: shum Date: Mon, 12 May 2025 11:03:37 +0000 Subject: [PATCH] expr: disable pragma --- src/Simplex/Messaging/Agent/Store/SQLite.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Simplex/Messaging/Agent/Store/SQLite.hs b/src/Simplex/Messaging/Agent/Store/SQLite.hs index c724c031b..3cd2a7a2c 100644 --- a/src/Simplex/Messaging/Agent/Store/SQLite.hs +++ b/src/Simplex/Messaging/Agent/Store/SQLite.hs @@ -108,7 +108,7 @@ connectDB path key track = do exec . fromQuery $ [sql| PRAGMA busy_timeout = 100; - PRAGMA foreign_keys = ON; + PRAGMA foreign_keys = OFF; -- PRAGMA trusted_schema = OFF; PRAGMA secure_delete = ON; PRAGMA auto_vacuum = FULL;