Created
August 2, 2012 15:19
-
-
Save groovecoder/3237857 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DATABASES = { | |
'default': { | |
'NAME': 'kuma', | |
'ENGINE': 'django.db.backends.mysql', | |
'HOST': 'localhost', | |
'USER': 'kuma', | |
'PASSWORD': 'kuma', | |
'OPTIONS': {'init_command': 'SET storage_engine=InnoDB'}, | |
}, | |
'new': { | |
'NAME': 'kuma2', | |
'ENGINE': 'django.db.backends.mysql', | |
'HOST': 'localhost', | |
'USER': 'kuma', | |
'PASSWORD': 'kuma', | |
'OPTIONS': {'init_command': 'SET storage_engine=InnoDB'}, | |
}, | |
'old': { | |
'NAME': 'kuma', | |
'ENGINE': 'django.db.backends.mysql', | |
'HOST': 'localhost', | |
'USER': 'kuma', | |
'PASSWORD': 'kuma', | |
'OPTIONS': {'init_command': 'SET storage_engine=InnoDB'}, | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment