Created
July 22, 2019 07:52
-
-
Save fdocr/d78d0a0b470420db6118c2dc532a26ce to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ``` | |
| heroku restart -a APP_NAME | |
| heroku pg:reset -a APP_NAME DATABASE --confirm=APP_NAME | |
| heroku run rake db:migrate -a APP_NAME | |
| heroku run rake db:seed -a APP_NAME | |
| ``` | |
| One liner: | |
| `heroku restart -a APP_NAME; heroku pg:reset -a APP_NAME DATABASE --confirm=APP_NAME; heroku run rake db:migrate -a APP_NAME; heroku run rake db:seed -a APP_NAME` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment