Files
mayan-edms/mayan/settings/testing/magnum/db_postgres.py
2015-08-19 01:57:20 -04:00

12 lines
228 B
Python

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