I want to get an export of my Heroku Postgres database, however I want to exclude one table. Is it possible?
Here is the command I use to export my entire Postgres database:
$ PGUSER=my_username PGPASSWORD=my_password heroku pg:pull DATABASE_URL my-application-name`
Maybe there is a way to exclude one table or specify a list of tables to include?
Don p source
share