Updated database options settings to match our production database and dump files.

- Legacy-Id: 16632
This commit is contained in:
Henrik Levkowetz 2019-08-08 13:10:24 +00:00
parent 2c2f8b72a8
commit 9a2c409238

View file

@ -99,7 +99,10 @@ DATABASES = {
'ENGINE': 'django.db.backends.mysql',
'USER': 'ietf',
#'PASSWORD': 'ietf',
'OPTIONS': {'sql_mode': 'STRICT_TRANS_TABLES', },
'OPTIONS': {
'sql_mode': 'STRICT_TRANS_TABLES',
'init_command': 'SET storage_engine=MyISAM; SET names "utf8"'
},
},
}