1
0
Fork 0
mirror of https://github.com/veekun/pokedex.git synced 2024-08-20 18:16:34 +00:00

try only disabling PRAGMA synchronous = OFF

This commit is contained in:
Andrew Ekstedt 2018-03-30 13:17:47 -07:00
parent 8722315f35
commit 48655ce39d
2 changed files with 2 additions and 2 deletions
pokedex/db

View file

@ -156,7 +156,7 @@ def load(session, tables=[], directory=None, drop_tables=False, verbose=False, s
# SQLite speed tweaks
if not safe and engine.dialect.name == 'sqlite':
session.execute("PRAGMA synchronous=OFF")
#session.execute("PRAGMA synchronous=OFF")
session.execute("PRAGMA journal_mode=OFF")
# Drop all tables if requested