turn on pragma foreign_keys in spells.py

merge-requests/34/merge
James Miller 2019-08-14 23:01:30 -05:00
parent 13754f2808
commit 696f9afd70
1 changed files with 2 additions and 0 deletions

View File

@ -34,10 +34,12 @@ def main():
pragma2 = "PRAGMA count_changes=OFF;"
pragma3 = "PRAGMA journal_mode=MEMORY;"
pragma4 = "PRAGMA temp_store=MEMORY;"
pragma5 = "PRAGMA foreign_keys=ON;"
conn.execute(pragma1)
conn.execute(pragma2)
conn.execute(pragma3)
conn.execute(pragma4)
conn.execute(pragma5)
# load in ids for traits from traits table so we only call this once
# instead of every spell