aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootstrap.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bootstrap.py b/bootstrap.py
index 9cab7417..6b120be8 100644
--- a/bootstrap.py
+++ b/bootstrap.py
@@ -28,6 +28,7 @@ if os.environ.get('PYAGG_TESTING', False) == 'true':
application.config['TESTING'] = True
else:
application.debug = conf.LOG_LEVEL <= logging.DEBUG
+ application.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = True
application.config['SQLALCHEMY_DATABASE_URI'] \
= conf.SQLALCHEMY_DATABASE_URI
bgstack15