Heroku "We're sorry, but something went wrong"

Did you migrate your database?

Try running:

heroku run rake db:migrate 

from your project's directory.


Turns out my database in heroku was being referenced wrongly. This is what I did:

  1. rake db:drop - this killed both test and development tables
  2. re-created the two databases in posgresql I have it local as well
  3. rake db:migrate - so at this point localhost is working again after 1.
  4. heroku addons - shared-database should be shown
  5. heroku pg:reset SHARED_DATABASE - can't do db:reset in heroku due to permission issues
  6. heroku run rake db:migrate - re-migrate the production db

Although only steps 5 and 6 were the only ones addressing my primary issue directly.

Thanks all!!!