Search code examples
postgresqlherokubackup

How to check if there is a PostgreSQL backup scheduled?


I have recently started working on an existing Heroku environment.

How can I tell if there are database backups scheduled?


Solution

  • Assuming you are using Heroku Postgres, you can view backup schedules with the following command:

    heroku pg:backups:schedules
    

    You might have to provide the --app argument so Heroku knows which app you're interested in.