]> git.donarmstrong.com Git - debbugs.git/blob - sql/dbicdump_command.sh
Add Debbugs::BugWalker to abstract out bug-walking code in
[debbugs.git] / sql / dbicdump_command.sh
1 #!/bin/sh
2
3 if ! [ -d "sql" ] || ! [ -d "Debbugs" ]; then 
4     echo "In the wrong directory"
5     exit 1;
6 fi;
7
8 dbicdump -I. -o dump_directory=. \
9     -o components='["InflateColumn::DateTime"]' \
10     -o preserve_case=1 \
11     Debbugs::DB dbi:Pg:service=debbugs '' '';
12