mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Fixed #147 -- Thanks, Robin Munn!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@289 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
		| @@ -39,7 +39,7 @@ SERVER_EMAIL = 'root@localhost' | |||||||
| SEND_BROKEN_LINK_EMAILS = True | SEND_BROKEN_LINK_EMAILS = True | ||||||
|  |  | ||||||
| # Database connection info. | # Database connection info. | ||||||
| DATABASE_ENGINE = 'postgresql' # 'postgresql' or 'mysql' | DATABASE_ENGINE = 'postgresql' # 'postgresql', 'mysql', or 'sqlite3'. | ||||||
| DATABASE_NAME = '' | DATABASE_NAME = '' | ||||||
| DATABASE_USER = '' | DATABASE_USER = '' | ||||||
| DATABASE_PASSWORD = '' | DATABASE_PASSWORD = '' | ||||||
|   | |||||||
| @@ -10,11 +10,11 @@ MANAGERS = ADMINS | |||||||
|  |  | ||||||
| LANGUAGE_CODE = 'en-us' | LANGUAGE_CODE = 'en-us' | ||||||
|  |  | ||||||
| DATABASE_ENGINE = 'postgresql' # 'postgresql', 'mysql', or 'sqlite' | DATABASE_ENGINE = 'postgresql' # 'postgresql', 'mysql', or 'sqlite3'. | ||||||
| DATABASE_NAME = ''             # or path to database file if using sqlite  | DATABASE_NAME = ''             # Or path to database file if using sqlite3. | ||||||
| DATABASE_USER = ''             # not used with sqlite | DATABASE_USER = ''             # Not used with sqlite3. | ||||||
| DATABASE_PASSWORD = ''         # not used with sqlite | DATABASE_PASSWORD = ''         # Not used with sqlite3. | ||||||
| DATABASE_HOST = ''             # Set to empty string for localhost; not used with sqlite | DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3. | ||||||
|  |  | ||||||
| SITE_ID = 1 | SITE_ID = 1 | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user