Releases: simonw/db-to-sqlite
Releases · simonw/db-to-sqlite
1.5
1.4
- New
--postgres-schema
option for specifying a different PostgreSQL schema, thanks Jeremy Dormitzer. #29 - Correctly handles table names that need escaping, such as
user
in PostgreSQL. #25 - Empty tables are now created in the SQLite database with a matching schema, rather than being skipped. #28
- Connection strings starting with
postgres://
are treated as if they started withpostgresql://
. #34
1.3
1.2.1
- Changelog badge and project_urls for the PyPI listing.
1.2
1.1.1
1.1
1.0.2
1.0.1
1.0
See the README for full usage instructions.
- Instead of using
--connection
the connection string is now a required positional argument, #14 --sql
must now be accompanied by--output
specifying the table the query results should be written to--redact tablename columnname
option can be used to redact values, #2- Foreign keys are now created with indexes, use
--no-index-fks
to disable this, #12 --table
can now be used multiple times, #6- README and
--help
now include example connection strings - README also details how this can be used with Heroku Postgres