From 715b7af484c4e5e87492478d65ed19415a5676de Mon Sep 17 00:00:00 2001 From: dm1sh Date: Sun, 20 Mar 2022 04:00:45 +0300 Subject: [PATCH] Fixed db config variable name in settings --- settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.py b/settings.py index 3de7869..757a09c 100644 --- a/settings.py +++ b/settings.py @@ -9,7 +9,7 @@ DATABASES = { } if not DATABASE_URL: - DATABASE['default'] = { + DATABASES['default'] = { 'ENGINE': 'django.db.backends.postgresql', 'NAME': DATABASE_NAME, 'USER': DATABASE_USER,