I'm running into an issue that South creates the DB table for a new model as INNODB when I migrate but creates the table as MYISAM when another developer runs their own migration.

The problem with this is that all my other tables are MYISAM so using the new tables leads to many foreign key constraint errors.

How can I explicitly make sure the table is created using MYISAM?

What could be causing the table to be created using a different storage engine in different environments?

link|improve this question

feedback

2 Answers

up vote 7 down vote accepted

To be sure that all migrations are always done using INNODB, you should set the storage engine as INNODB in the database definition directly, like thisĀ :

DATABASES = {
    'default': {
        ...
        'OPTIONS'  : { 'init_command' : 'SET storage_engine=INNODB', },
    }

But you should know that it can have a performance hit. So you may want to set this option only when running migrations.

link|improve this answer
To clarify, this goes in settings.py, not in the migrations. – Daniel Roseman Mar 11 '11 at 15:14
2  
This was exactly what I was looking for. Thanks. To compensate for the performance hit that you mentioned I added a conditional around it. Now it will only be invoked at times when I want to modify the database (syncdb or modify). import sys if 'migrate' in sys.argv or 'syncdb' in sys.argv: – Eron Villarreal Mar 14 '11 at 8:04
feedback

http://south.aeracode.org/docs/settings.html#database-storage-engine

django < 1.2

# add to your settings file
DATABASE_STORAGE_ENGINE = 'INNODB' # django < 1.2

django >= 1.2

# add to your settings file
DATABASES = {
   'default': {
       ...
       STORAGE_ENGINE = 'INNODB'
   }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.