I have application running locally on rails with postgres. Everything works fine. Im new to rails and i wanted deploy my second application on heroku fallowing this guide: https://devcenter.heroku.com/articles/rails3 When i created new app, i saw it working, then i pushed my app, and couldnt run heroku run rake db:migrate -app "MY NEW APP NAME", because of many errors. Some of them:
DEPRECATION WARNING: You have Rails 2.3-style plugins in vendor/plugins!
rake aborted! An error has occurred, this and all later migrations canceled: PG::Error: ERROR: column "confirmed" of relation "orders" already exists
When i try to launch my app i see: "We're sorry, but something went wrong.". If there already existing columns it shouldnt run locally i guess. What could went wrong?