Created
November 15, 2013 18:25
-
-
Save jessieay/7489216 to your computer and use it in GitHub Desktop.
Restoring local database from Heroku
This file contains 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 pgbackups:capture --expire --app APP_NAME | |
$ curl -o latest.dump `heroku pgbackups:url --app APP_NAME` | |
$ pg_restore --verbose --clean --no-acl --no-owner -h localhost -d DEVELOPMENT_DATABASE_NAME latest.dump |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment