Remove explicit cipher_compatability PRAGMA
This commit is contained in:
parent
ff3f5fcf3a
commit
f9d92811dc
1 changed files with 0 additions and 1 deletions
|
|
@ -23,7 +23,6 @@ class DBManager:
|
||||||
self.conn = sqlite.connect(str(self.cfg.path))
|
self.conn = sqlite.connect(str(self.cfg.path))
|
||||||
cur = self.conn.cursor()
|
cur = self.conn.cursor()
|
||||||
cur.execute(f"PRAGMA key = '{self.cfg.key}';")
|
cur.execute(f"PRAGMA key = '{self.cfg.key}';")
|
||||||
cur.execute("PRAGMA cipher_compatibility = 4;")
|
|
||||||
cur.execute("PRAGMA journal_mode = WAL;")
|
cur.execute("PRAGMA journal_mode = WAL;")
|
||||||
self.conn.commit()
|
self.conn.commit()
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue