Skip to content

Commit

Permalink
Fixed #12447 -- Corrected a bad example in the multi-db docs. Thanks …
Browse files Browse the repository at this point in the history
…to Bryan Veloso for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11982 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Dec 25, 2009
1 parent 9b8e90f commit 7626f85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/topics/db/multi-db.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ databases - a default Postgres database, and a MySQL database called
DATABASES = {
'default': {
'NAME': 'app_data',
'BACKEND': 'django.db.backends.postgres_psycopg2',
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'USER': 'postgres_user',
'PASSWORD': 's3krit'
},
'users': {
'NAME': 'user_data'
'BACKEND': 'django.db.backends.mysql',
'ENGINE': 'django.db.backends.mysql',
'USER': 'mysql_user',
'PASSWORD': 'priv4te'
}
Expand Down

0 comments on commit 7626f85

Please sign in to comment.