simonw / db-to-sqlite

CLI tool for exporting tables or queries from any SQL database to a SQLite file
Apache License 2.0
368 stars 28 forks source link

--redact tablename colname option #2

Closed simonw closed 5 years ago

simonw commented 5 years ago

It might be useful if the CLI could redact specific column.

db-to-sqlite data.db postgres://... --all \
    --redact auth_user password --redact auth_user email
simonw commented 5 years ago

If a column that forms part of a foreign key is redacted we should skip attempting to create that foreign key relationship.