6

「--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

1 つのテーブルで「-e」を使用する方法は理解できましたが、複数のテーブルを除外したいと考えています。機能していません:

heroku db:pull -e users, versions
4

3 に答える 3

6

わたしにはできる

heroku db:pull -e "stats admins" --app APP_NAME
于 2012-12-10T08:40:55.300 に答える