Skip to content
Snippets Groups Projects
Commit 2d4b3c48 authored by Branson Craig Stephens's avatar Branson Craig Stephens
Browse files

Committed changes to avoid new tables using INNODB and old ones using MYISAM....

Committed changes to avoid new tables using INNODB and old ones using MYISAM. This leads to fk constraint errors.
parent ecfe0a44
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,9 @@ DATABASES = {
'ENGINE' : 'django.db.backends.mysql',
'USER' : 'branson',
'PASSWORD' : 'thinglet',
'OPTIONS' : {
'init_command': 'SET strage_engine=MyISAM',
},
}
}
......@@ -219,10 +222,11 @@ LOGGING = {
'propagate': True,
'level': 'INFO',
},
# 'userprofile': {
# 'handlers': ['debug_file', 'info_file', 'warning_file', 'error_file'],
# 'propagate': True,
# 'level': LOG_LEVEL,
# },
'userprofile': {
#'handlers': ['debug_file', 'info_file', 'warning_file', 'error_file'],
'handlers': ['debug_file'],
'propagate': True,
'level': LOG_LEVEL,
},
},
}
......@@ -70,6 +70,9 @@ DATABASES = {
'ENGINE' : 'django.db.backends.mysql',
'USER' : 'gracedb',
'PASSWORD' : 'redrum4x',
'OPTIONS' : {
'init_command': 'SET strage_engine=MyISAM',
},
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment