Remove explicit cipher_compatability PRAGMA

This commit is contained in:
Miguel Jacq 2025-11-02 10:04:34 +11:00
parent ff3f5fcf3a
commit f9d92811dc
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9

View file

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