From cf63c9dad23631a190e96cd270e38406a238a088 Mon Sep 17 00:00:00 2001 From: Eric Schultz Date: Tue, 5 Jun 2018 16:06:47 -0500 Subject: [PATCH] Remove commitchange specific postgres restore script --- script/pg_restore_local_from_production.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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