Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pgbackups on Heroku not found

I have been using pgbackups to capture databases and load them locally but since yesterday, I am getting this message when provisioning the add on for new apps.

!    Add-on plan not found.

Has pgbackups been disabled for new instances? It still works on apps it was previously integrated with. If it has been deprecated, what is the recommended replacement?

like image 472
Hunt Burdick Avatar asked Mar 14 '15 20:03

Hunt Burdick


1 Answers

Heroku have recently made changes. "PG Backups as an add-on has been deprecated." For new commands, see here: https://devcenter.heroku.com/articles/mapping-pgbackups-commands

Old command:

heroku pgbackups:capture --app sushi

New Command

heroku pg:backups capture --app sushi
like image 122
jcuenod Avatar answered Sep 28 '22 08:09

jcuenod