From c7a54fae899eab351c0573512bbe4c3e9de6689b Mon Sep 17 00:00:00 2001 From: Correl Roush Date: Thu, 26 Aug 2010 15:20:16 -0400 Subject: [PATCH] Switch to mysql db --- settings.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/settings.py b/settings.py index 07b4c1e..f95ddf4 100755 --- a/settings.py +++ b/settings.py @@ -11,10 +11,10 @@ MANAGERS = ADMINS DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': 'mtg.db', # Or path to database file if using sqlite3. - 'USER': '', # Not used with sqlite3. - 'PASSWORD': '', # Not used with sqlite3. + 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. + 'NAME': 'mtg', # Or path to database file if using sqlite3. + 'USER': 'mtg', # Not used with sqlite3. + 'PASSWORD': 'mtg', # Not used with sqlite3. 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. 'PORT': '', # Set to empty string for default. Not used with sqlite3. }