Changing table's engine through migration scripts

2012-09-16 Thread Gurpreet Bhatia
corrected the wrong subject :) On Sun, Sep 16, 2012 at 12:22 PM, Gurpreet Bhatia < gurpreetbhatia@gmail.com> wrote: > Hi Everyone, > > I have one query: > > Should we change the database(mySQL) table's engine through migration > scripts or not? If not then why? &

Re: Customizing the Django Admin Interface

2012-09-16 Thread Gurpreet Bhatia
Hi Everyone, I have one query: Should we change the database(mySQL) table's engine through migration scripts or not? If not then why? Following were my proposal: def forwards(self, orm): # Change engine from MYISAM to INNODB db.execute('alter table abc ENGINE=INNODB;') def