14 lines
337 B
Python
14 lines
337 B
Python
from __future__ import absolute_import, unicode_literals
|
|
|
|
from ..base import * # NOQA
|
|
|
|
INSTALLED_APPS += ('test_without_migrations',)
|
|
TEMPLATE_LOADERS = (
|
|
'django.template.loaders.filesystem.Loader',
|
|
'django.template.loaders.app_directories.Loader'
|
|
)
|
|
|
|
PASSWORD_HASHERS = (
|
|
'django.contrib.auth.hashers.MD5PasswordHasher',
|
|
)
|