找不到 Heroku 上的 pgbackups

pgbackups on Heroku not found

我一直在使用 pgbackups 来捕获数据库并在本地加载它们,但从昨天开始,我在为新应用程序配置插件时收到此消息。

!    Add-on plan not found.

是否为新实例禁用了 pgbackups?它仍然适用于之前集成的应用程序。如果它已被弃用,建议的替代品是什么?

Heroku 最近进行了更改。 “作为附加组件的 PG Backups 已被弃用。”有关新命令,请参见此处: https://devcenter.heroku.com/articles/mapping-pgbackups-commands

旧命令:

heroku pgbackups:capture --app sushi

新命令

heroku pg:backups capture --app sushi

所以我错过了这里的免责声明:https://devcenter.heroku.com/articles/pgbackups

PG Backups as an add-on has been deprecated. The commands exist as part of the Heroku Postgres namespace in the CLI. The new functionality is live and available for use. We also have a mapping guide to show you how the old commands transfer to the new ones. 

要添加到上面来自 jcuenod 的响应,同样适用于 heroku pg:backups:restore。新命令将是 heroku pg:backups restoreHeroku documentation 不一致,应该更新。