Switch to mysql db

This commit is contained in:
Correl Roush 2010-08-26 15:20:16 -04:00
parent 5189569cb3
commit c7a54fae89

View file

@ -11,10 +11,10 @@ MANAGERS = ADMINS
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
'NAME': 'mtg.db', # Or path to database file if using sqlite3. 'NAME': 'mtg', # Or path to database file if using sqlite3.
'USER': '', # Not used with sqlite3. 'USER': 'mtg', # Not used with sqlite3.
'PASSWORD': '', # Not used with sqlite3. 'PASSWORD': 'mtg', # Not used with sqlite3.
'HOST': '', # Set to empty string for localhost. 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. 'PORT': '', # Set to empty string for default. Not used with sqlite3.
} }