Changed the settings_local.py for the docker image to use the database type enforced in docker/updatedb

- Legacy-Id: 17952
This commit is contained in:
Henrik Levkowetz 2020-06-09 18:55:59 +00:00
parent 956ddaf3cf
commit 73a0627bf1

View file

@ -15,7 +15,7 @@ DATABASES = {
'PASSWORD': 'RkTkDPFnKpko',
'OPTIONS': {
'sql_mode': 'STRICT_TRANS_TABLES',
'init_command': 'SET storage_engine=MyISAM; SET names "utf8"',
'init_command': 'SET storage_engine=InnoDB; SET names "utf8"',
},
},
} # type: Dict[str, Dict[str, Collection[str]]]