fix pg_dump syntax to exclude schemes

This commit is contained in:
Régis Hanol 2014-02-13 09:12:20 -08:00
parent 6e44ca8e17
commit 62f98993cd

View file

@ -160,7 +160,8 @@ module Export
[ "PGPASSWORD=#{password}", # pass the password to pg_dump
"pg_dump", # the pg_dump command
"--exclude-schema=backup,restore", # exclude both backup & restore schemes
"--exclude-schema=backup", # exclude backup schema
"--exclude-schema=restore", # exclude restore schema
"--file='#{@dump_filename}'", # output to the dump.sql file
"--no-owner", # do not output commands to set ownership of objects
"--no-privileges", # prevent dumping of access privileges