Right now, Django defaults to MYISAM...but I want to change it so that everytime I create a new table it is innodb.
See here
Put that in settings.py:
DATABASE_ENGINE = 'mysql' DATABASE_OPTIONS = {"init_command": "SET storage_engine=INNODB"}