1
0
mirror of https://github.com/django/django.git synced 2025-01-23 16:50:41 +00:00

Corrected bad example for DATABASES setting

git-svn-id: http://code.djangoproject.com/svn/django/trunk@12010 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Luke Plant 2009-12-28 13:13:04 +00:00
parent c38d66a216
commit 5957052acb

View File

@ -219,7 +219,7 @@ SQLite. This can be configured using the following::
DATABASES = {
'default': {
'BACKEND': 'django.db.backends.sqlite3',
'ENGINE': 'django.db.backends.sqlite3',
'NAME': 'mydatabase'
}
}