aboutsummaryrefslogtreecommitdiff
path: root/instance/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'instance/config.py')
-rw-r--r--instance/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/instance/config.py b/instance/config.py
index 89655edf..577c1659 100644
--- a/instance/config.py
+++ b/instance/config.py
@@ -22,7 +22,7 @@ DB_CONFIG_DICT = {
"port": 5432,
}
DATABASE_NAME = "postgres"
-SQLALCHEMY_DATABASE_URI = "postgres://{user}:{password}@{host}:{port}/{name}".format(
+SQLALCHEMY_DATABASE_URI = "postgresql://{user}:{password}@{host}:{port}/{name}".format(
name=DATABASE_NAME, **DB_CONFIG_DICT
)
bgstack15