mirror of
https://github.com/django/django.git
synced 2025-01-22 00:02:15 +00:00
Fixed #16873 - Added dummy database backend in default settings, so that just importing django.db doesn't trigger ImproperlyConfigured if there is no DATABASES setting.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16946 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
ac6361a3a6
commit
29def3e52c
@ -143,6 +143,9 @@ SEND_BROKEN_LINK_EMAILS = False
|
||||
|
||||
# Database connection info.
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.dummy',
|
||||
},
|
||||
}
|
||||
|
||||
# Classes used to implement db routing behaviour
|
||||
|
Loading…
x
Reference in New Issue
Block a user