I got this error while migrating Sentry app in django. I am using mysql
! Since you have a database that does not support running
! schema-altering statements in transactions, we have had
! to leave it in an interim state between migrations.
! You *might* be able to recover with: = DROP TABLE `sentry_groupedmessage` CASCADE; []
= DROP TABLE `sentry_message` CASCADE; []
what should i do
Your problem is that the migration failed, and MySQL does not have support for Transactions, so South doesn't know in which state the tables are in.
The only way how you can recover it from this point is: