Fix Database Name for MariaDB

For some reason MariaDB 10.1 does not like "-" in db names. So
I have changed db name in settings.py from dash-stack to
dash_stack.

Change-Id: I7bd8959e40788ae4d3280bbd655b50271e1a793b
This commit is contained in:
Paarhati Ozkasgarli 2017-03-04 09:30:09 +03:00
parent aa1bdbfd0e
commit d98d2f51f7
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ WSGI_APPLICATION = 'dash_stack_dashboard.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'dash-stack',
'NAME': 'dash_stack',
'USER': 'dash-stack',
'PASSWORD': 'password',
'HOST': 'localhost',