Don't turn on sqlite refcheck stuff during migrations

This commit is contained in:
Christopher Allan Webber
2013-04-26 15:09:03 -05:00
parent d6251b29ec
commit 313b38f895
2 changed files with 3 additions and 3 deletions

View File

@@ -114,7 +114,7 @@ def run_dbupdate(app_config, global_config):
global_config.get('plugins', {}).keys())
# Set up the database
db = setup_connection_and_db_from_config(app_config)
db = setup_connection_and_db_from_config(app_config, sqlite_refcheck=False)
Session = sessionmaker(bind=db.engine)