From f1ed478b13016433c3cffb26353fac48ec9e1d1f Mon Sep 17 00:00:00 2001 From: aido93 Date: Mon, 29 Jun 2020 15:37:11 +0300 Subject: [PATCH] Update restore.sh --- postgres-restore-s3/restore.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/postgres-restore-s3/restore.sh b/postgres-restore-s3/restore.sh index b4570f3..d44c159 100644 --- a/postgres-restore-s3/restore.sh +++ b/postgres-restore-s3/restore.sh @@ -80,7 +80,10 @@ psql $POSTGRES_HOST_OPTS -d postgres -c "DROP DATABASE IF EXISTS \"$POSTGRES_DAT psql $POSTGRES_HOST_OPTS -d postgres -c "CREATE DATABASE \"$POSTGRES_DATABASE\";" psql $POSTGRES_HOST_OPTS -d postgres -c "GRANT ALL PRIVILEGES ON DATABASE \"$POSTGRES_DATABASE\" TO $POSTGRES_USER;" psql $POSTGRES_HOST_OPTS -d postgres -c "CREATE EXTENSION IF NOT EXISTS citext;" +psql $POSTGRES_HOST_OPTS -d postgres -c "ALTER EXTENSION citext SET SCHEMA public;" psql $POSTGRES_HOST_OPTS -d postgres -c "CREATE EXTENSION IF NOT EXISTS plpgsql;" +psql $POSTGRES_HOST_OPTS -d postgres -c "ALTER EXTENSION plpgsql SET SCHEMA public;" + set -e pg_restore $POSTGRES_HOST_OPTS --no-owner --single-transaction -n public --no-privileges -v -d "$POSTGRES_DATABASE" dump.sql