Mysql
 sql >> Database >  >> RDS >> Mysql

Conversione di un database MyISAM esistente in InnoDB con Django

Questo potrebbe aiutare:

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])

Aggiungilo alla tua app sotto le cartelle gestione/comandi/ Quindi puoi convertire tutte le tue tabelle con un comando manage.py:

python manage.py convert_to_innodb