Revision 12042
Added by Aaron Marcuse-Kubitza about 11 years ago
Makefile | ||
---|---|---|
90 | 90 |
pg_dump = env schema= ../bin/pg_dump_vegbien $(1) >$@ |
91 | 91 |
|
92 | 92 |
vegbien.sql: |
93 |
unset version dump_opts; $(call pg_dump,public) |
|
93 |
# include schemas that depend on `public` so they are restored along with it |
|
94 |
unset version dump_opts; $(call pg_dump,public --schema=validation) |
|
94 | 95 |
|
95 | 96 |
py_util.sql: |
96 | 97 |
env owners=1 $(call pg_dump,py_util) |
Also available in: Unified diff
schemas/vegbien.sql: added validation schema, which contains queries used in the aggregating validations. schemas/Makefile: include schemas that depend on `public` (eg. `validation`) so they are restored along with it.