From 73a0627bf1821f9507d76e772ededbfc3476946b Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Tue, 9 Jun 2020 18:55:59 +0000 Subject: [PATCH] Changed the settings_local.py for the docker image to use the database type enforced in docker/updatedb - Legacy-Id: 17952 --- docker/settings_local.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/settings_local.py b/docker/settings_local.py index 5cf2ed6e4..c344bfd54 100644 --- a/docker/settings_local.py +++ b/docker/settings_local.py @@ -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]]]