[RAILS] App update reflected after heroku deployment

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

Recommended Posts

App update reflected after heroku deployment
App update reflected after heroku deployment
Rails Heroku deployment procedure
Heroku app moving (rails)
[Rails] Heroku deployment flow