我找不到任何地方如何使用“--exclude”。 当我尝试这段代码时
heroku help db:pull
我明白了:
Usage: heroku db:pull [DATABASE_URL]
pull heroku data down into your local database
DATABASE_URL should reference your local database. if not specified, it
will be guessed from config/database.yml
-c, --chunksize SIZE # specify the number of rows to send in each batch
-d, --debug # enable debugging output
-e, --exclude TABLES # exclude the specified tables from the pull
-f, --filter REGEX # only pull certain tables
-r, --resume FILE # resume transfer described by a .dat file
-t, --tables TABLES # only pull the specified tables
好的,我理解如何在一个表中使用“-e”,但我想排除多个表。 它不起作用:
heroku db:pull -e users, versions
答案 0 :(得分:7)
它对我有用
heroku db:pull -e "stats admins" --app APP_NAME
答案 1 :(得分:3)
来自文档“使用”;'拆分名称“
heroku pg:pull [DATABASE] --exclude-table-data "[FIRST_TABLE_NAME];[SECOND_TABLE_NAME]" --app [APP_NAME]
答案 2 :(得分:0)
我刚用过
heroku pg:pull DATABASE_URL LOCAL_DB --exclude-table-data TABLE_NAME --app APP_NAME
更新:要排除多个表,请尝试
heroku pg:pull DATABASE_URL LOCAL_DB --exclude-table-data TABLE_1_NAME; --exclude-table-data TABLE_2_NAME --app APP_NAME
尝试heroku pg:pull --help获取完整文档