We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbe8da6 commit 71883daCopy full SHA for 71883da
1 file changed
docker/settings_local.py
@@ -13,8 +13,12 @@
13
'ENGINE': 'django.db.backends.mysql',
14
'USER': 'django',
15
'PASSWORD': 'RkTkDPFnKpko',
16
+ 'OPTIONS': {
17
+ 'sql_mode': 'STRICT_TRANS_TABLES',
18
+ 'init_command': 'SET storage_engine=MyISAM; SET names "utf8"',
19
},
- } # type: Dict[str, Dict[str, Collection[str]]]
20
+ },
21
+} # type: Dict[str, Dict[str, Collection[str]]]
22
23
DATABASE_TEST_OPTIONS = {
24
'init_command': 'SET storage_engine=InnoDB',
0 commit comments