Das könnte helfen:
from django.core.management.base import BaseCommand
from django.db import connections
class Command(BaseCommand):
def handle(self, database="default", *args, **options):
cursor = connections[database].cursor()
cursor.execute("SHOW TABLE STATUS")
for row in cursor.fetchall():
if row[1] != "InnoDB":
print "Converting %s" % row[0],
print cursor.execute("ALTER TABLE %s ENGINE=INNODB" % row[0])
Fügen Sie das zu Ihrer App unter den Ordnern management/commands/ hinzu. Dann können Sie alle Ihre Tabellen mit einem manage.py-Befehl konvertieren:
python manage.py convert_to_innodb