We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There are two possible scenarios when you are pushing to Heroku.
If you are in option 2, then follow these steps to save you some frustration:
Drop the Tables
heroku pg:reset SHARED_DATABASE --confirm NAME_OF_THE_APP
Recreate the database:
heroku run rake db:migrate
Seed the database:
heroku run rake db:seed
Restart the service
heroku restart
If you are in option 1, then just push up the new code, no worries.