[Answered ]-How can user download database from django heroku?

1👍

To export the data from your Heroku Postgres database, create a new backup and download it.

heroku pg:backups:capture --app example-app
heroku pg:backups:download --app example-app

Refer official heroku doc for more

Leave a comment