Add script to drop and restore a database
This commit is contained in:
parent
f183a51317
commit
ace09bd25a
|
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
while getopts d:f: flag
|
||||||
|
do
|
||||||
|
case "${flag}" in
|
||||||
|
d) database=${OPTARG};;
|
||||||
|
f) filename=${OPTARG};;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
psql -c "drop database $database;"
|
||||||
|
psql -c "create database $database with owner skillbox;"
|
||||||
|
pg_restore --verbose --clean --no-acl --no-owner -d $database $filename
|
||||||
Loading…
Reference in New Issue