Files
mayan-edms/mayan/settings/travis/db_postgres.py
2015-01-05 02:40:16 -04:00

12 lines
215 B
Python

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