### List backups ``` heroku login heroku pg:backups --app skillbox-prod ``` ### Create a backup `heroku pg:backups:capture --app ` The following command will provide a URL to where the backup can be downloaded (expires after 60 minutes) `heroku pg:backups:url b001 --app ` To restore a backup, use `heroku pg:backups:restore b001 DATABASE_URL --app ` To see the backup schedule `heroku pg:backus:schedules --app ` To download a backup use `heroku pg:backups:download --app `