Bitte tun Sie dies:
1- Installieren Sie zuerst einen neuen, frischen MySQL-Server.
2- Erstellen Sie eine neue Datenbank
3- Konfigurieren Sie die Django-Einstellungen wie folgt:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'db_name',
'USER': 'root',
'PASSWORD': 'db_pass',
'HOST': 'localhost', # Or an IP Address that your DB is hosted on
'PORT': '3306',
'OPTIONS': {"init_command": "SET storage_engine=MyISAM"},
}
4- Führen Sie syncdb erneut aus
5- Führen Sie die Migration erneut aus
Ich hoffe, das funktioniert