Skip to content

Instantly share code, notes, and snippets.

@israelb
Forked from wrburgess/new_gist_file.md
Created March 2, 2016 04:15
Show Gist options
  • Select an option

  • Save israelb/c40f49533d4d36d775fc to your computer and use it in GitHub Desktop.

Select an option

Save israelb/c40f49533d4d36d775fc to your computer and use it in GitHub Desktop.
Upgrading heroku databases
heroku addons:add heroku-postgresql:standard-0 --remote staging
heroku maintenance:on --remote staging
heroku ps:scale worker=0 --remote staging
heroku pg:copy DATABASE_URL HEROKU_POSTGRESQL_PINK --remote staging
heroku pg:promote HEROKU_POSTGRESQL_PINK --remote staging
heroku ps:scale worker=1 --remote staging
heroku maintenance:off --remote staging
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment