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:
- rake db:drop - this killed both test and development tables
- re-created the two databases in posgresql I have it local as well
- rake db:migrate - so at this point localhost is working again after 1.
- heroku addons - shared-database should be shown
- heroku pg:reset SHARED_DATABASE - can't do db:reset in heroku due to permission issues
- 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!!!