From f9d92811dca8e974e4d73bdacd047cb50ccb31a2 Mon Sep 17 00:00:00 2001 From: Miguel Jacq Date: Sun, 2 Nov 2025 10:04:34 +1100 Subject: [PATCH] Remove explicit cipher_compatability PRAGMA --- bouquin/db.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bouquin/db.py b/bouquin/db.py index c75847e..0073903 100644 --- a/bouquin/db.py +++ b/bouquin/db.py @@ -23,7 +23,6 @@ class DBManager: self.conn = sqlite.connect(str(self.cfg.path)) cur = self.conn.cursor() cur.execute(f"PRAGMA key = '{self.cfg.key}';") - cur.execute("PRAGMA cipher_compatibility = 4;") cur.execute("PRAGMA journal_mode = WAL;") self.conn.commit() try: