1 Stage changes
> git add -A #-A staging all changes made
Or
>git add specific filename
2 Commit the staged changes
> git commit -m "comment"
3 Push the committed changes to your app on Heroku
> git push heroku master
4 migrate
$ heroku run rake db:migrate
#If you also want to update the seed
$ heroku run rake db:seed