I have a problem with pushing my migrations to the production database.
The issue:
I\'ve
It doesn't look like you are pushing changes to Heroku. Steps should be as follows;
git add .
git commit -m "Adding features"
git push heroku master
- assuming you are using heroku
as your remote name and you are working in the master
branchheroku run rake db:migrate
to run the migrations ON HEROKUheroku restart
That should be all you need to get you working.