Skip to content

Instantly share code, notes, and snippets.

@markysharky70
Created June 10, 2011 17:20
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save markysharky70/1019289 to your computer and use it in GitHub Desktop.
Save markysharky70/1019289 to your computer and use it in GitHub Desktop.
Copy your production database to your staging database hosted on Heroku
1) backup production database:
heroku pgbackups:capture --expire --remote production
2) obtain url string to backup from step 1:
heroku pgbackups:url --app production_app_name --remote production_app_branch_name
3) transfer backup from production to staging app:
heroku pgbackups:restore DATABASE 'production_app_backup_url_string_from_step_2' --app production_app_name --app staging_app_branch_name
@jhjwind
Copy link

jhjwind commented Jan 8, 2014

in step 3, I think you meant staging_app_name instead of production_app_name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment