You must set the storage engine as INNODB in the database definition directly, for example.
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', ..... 'STORAGE_ENGINE': 'MYISAM' } }
For the new version, you can use:
DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', ..... 'OPTIONS': { "init_command": "SET storage_engine=MYISAM", } } }
GEITPL_Dev
source share