From dbb3714373e1d0e70191d65dafaf2479bd9bfc90 Mon Sep 17 00:00:00 2001 From: aido93 Date: Mon, 29 Jun 2020 17:14:53 +0300 Subject: [PATCH] Update restore.sh --- postgres-restore-s3/restore.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/postgres-restore-s3/restore.sh b/postgres-restore-s3/restore.sh index 6ba06d1..4c956f2 100644 --- a/postgres-restore-s3/restore.sh +++ b/postgres-restore-s3/restore.sh @@ -84,8 +84,8 @@ psql $POSTGRES_HOST_OPTS -d postgres -c "ALTER EXTENSION citext SET SCHEMA publi psql $POSTGRES_HOST_OPTS -d postgres -c "CREATE EXTENSION IF NOT EXISTS plpgsql;" set -e -sed -i -e 's/public.citext/citext/g' dump.sql -pg_restore $POSTGRES_HOST_OPTS --no-owner --single-transaction -n public --no-privileges -v -d "$POSTGRES_DATABASE" dump.sql +sed -i 's/public.citext/citext/g' dump.sql +pg_restore $POSTGRES_HOST_OPTS --no-owner --single-transaction -n public -v -d "$POSTGRES_DATABASE" dump.sql echo "Restore complete"