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
1 changed files with 1 additions and 1 deletions

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'
}
}