diff --git a/script/pg_restore_local_from_production.sh b/script/pg_restore_local_from_production.sh index 743b8862..eb9a877d 100755 --- a/script/pg_restore_local_from_production.sh +++ b/script/pg_restore_local_from_production.sh @@ -1,5 +1,4 @@ #!/bin/bash set -e -curl -o latest.dump `heroku pg:backups public-url -a commitchange` -pg_restore --verbose --clean --no-acl --no-owner -h localhost -U admin -d commitchange_development latest.dump +pg_restore --verbose --clean --no-acl --no-owner -h db -U admin -d commitchange_development latest.dump