1
|
#!/bin/sh
|
2
|
# Dumps a schema of the vegbien db
|
3
|
|
4
|
selfDir="$(dirname -- "$0")"
|
5
|
|
6
|
if ! test "$#" -eq 1; then
|
7
|
echo "Usage: env [data=1] [plain=1] [owners=1] $0 schema >schema.sql"
|
8
|
exit 2
|
9
|
fi
|
10
|
|
11
|
if test -n "$data"; then
|
12
|
if test -n "$plain"; then dataOpts=--format=p
|
13
|
else dataOpts='--format=c --compress=9'
|
14
|
fi
|
15
|
owners=1
|
16
|
else dataOpts=--schema-only
|
17
|
fi
|
18
|
test -n "$owners" && ownerOpts= || ownerOpts='--no-owner --no-privileges'
|
19
|
|
20
|
(set -x; "$selfDir/../bin/postgres_vegbien" pg_dump --schema="\"$1\"" \
|
21
|
$dataOpts $ownerOpts --use-set-session-authorization)
|