root/bin/pg_dump_vegbien @ 3009
1 | 2092 | aaronmk | #!/bin/sh
|
---|---|---|---|
2 | # Dumps a schema of the vegbien db
|
||
3 | |||
4 | selfDir="$(dirname -- "$0")" |
||
5 | |||
6 | if ! test "$#" -eq 1; then |
||
7 | 2622 | aaronmk | echo "Usage: env [owners=1] $0 schema >schema.sql" |
8 | 2092 | aaronmk | exit 2
|
9 | fi
|
||
10 | 2622 | aaronmk | test -n "$owners" && noOwners= || noOwners=1 |
11 | 2092 | aaronmk | |
12 | 2626 | aaronmk | (set -x; "$selfDir/../bin/postgres_vegbien" pg_dump --schema="$1" --schema-only\ |
13 | 2628 | aaronmk | ${noOwners:+ --no-owner --no-privileges}) |