From ff3bb2d25f2a53bf6842fef86c4b6750757c56f7 Mon Sep 17 00:00:00 2001 From: Denis Rouzaud Date: Fri, 2 Feb 2018 10:42:56 -0400 Subject: [PATCH] fix schema name typo --- scripts/db_setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/db_setup.sh b/scripts/db_setup.sh index bbd16905..7e3a7f57 100755 --- a/scripts/db_setup.sh +++ b/scripts/db_setup.sh @@ -50,7 +50,7 @@ while getopts ":fs:p:" opt; do done if [[ $force ]]; then - psql "service=${PGSERVICE}" -v ON_ERROR_STOP=1 -c "DROP SCHEMA qgep_is CASCADE" + psql "service=${PGSERVICE}" -v ON_ERROR_STOP=1 -c "DROP SCHEMA qgep_sys CASCADE" psql "service=${PGSERVICE}" -v ON_ERROR_STOP=1 -c "DROP SCHEMA qgep_od CASCADE" psql "service=${PGSERVICE}" -v ON_ERROR_STOP=1 -c "DROP SCHEMA qgep_vl CASCADE" fi