From 3d8ebb3bec77948d3b7ca1a58160d897ed8dbc46 Mon Sep 17 00:00:00 2001 From: Jason Pellerin Date: Fri, 30 Jun 2006 18:00:58 +0000 Subject: [PATCH] [multi-db] Added DATABASES = {} to global_settings git-svn-id: http://code.djangoproject.com/svn/django/branches/multiple-db-support@3239 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/conf/global_settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/django/conf/global_settings.py b/django/conf/global_settings.py index a1dff3c815..70c37d4de2 100644 --- a/django/conf/global_settings.py +++ b/django/conf/global_settings.py @@ -91,6 +91,9 @@ DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. +# Optional named database connections in addition to the default. +DATABASES = {} + # Host for sending e-mail. EMAIL_HOST = 'localhost'