Fixed DATABASE_NAME in settings

This commit is contained in:
Fergal Moran
2015-06-05 21:44:53 +01:00
parent 1407e4e40c
commit cc1696b866

View File

@@ -28,7 +28,7 @@ ALLOWED_HOSTS = ['*']
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'deepsouthsounds',
'NAME': DATABASE_NAME,
'ADMINUSER': 'postgres',
'USER': DATABASE_USER,
'PASSWORD': DATABASE_PASSWORD,