Files
mayan-edms/mayan/settings/travis/db_mysql.py
Roberto Rosario e9ae8905b4 PEP8 Cleanups
2015-05-18 19:58:03 -04:00

12 lines
211 B
Python

from __future__ import unicode_literals
from .base import * # NOQA
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'mayan_edms',
'USER': 'travis',
}
}