Skip to content

Instantly share code, notes, and snippets.

@wrburgess
Created April 25, 2015 00:47
Show Gist options
  • Save wrburgess/1a0b7230e3fc5975cc00 to your computer and use it in GitHub Desktop.
Save wrburgess/1a0b7230e3fc5975cc00 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