views:

47

answers:

2

Right now, Django defaults to MYISAM...but I want to change it so that everytime I create a new table it is innodb.

+1  A: 

See here

Unknown
+1  A: 

Put that in settings.py:

DATABASE_ENGINE = 'mysql'
DATABASE_OPTIONS = {"init_command": "SET storage_engine=INNODB"}
Etienne