Heroku Download Database
heroku pg:backups:capture # Save current remote database
heroku pg:backups:download # Download from remote
# load remote on local machine
pg_restore --verbose --clean --no-acl --no-owner -h localhost -U {user} -d {db name} latest.dump
Nice Nightingale