I had the same problem... I found error messages inside db/schema.rb which I had generated with rake db:schema:dump.
The problem was that I used a non-standard data type - BIT(1). I altered the table to change my BIT(1) columns to TINYINT(1) and everything went fine. Maybe this will be somehow helpful. -- You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/heroku?hl=en.
