Releases: simonw/db-to-sqlite
Releases · simonw/db-to-sqlite
0.8
- Added
--progress
option to show progress bars during import - #7
0.7
- Support
pip install db-to-sqlite[postgresql]
#4
- Documentation for both that and
pip install db-to-sqlite[mysql]
0.6
--all
can now add many foreign key relationships without a VACUUM
between each one, #8
- Added unit tests against MySQL, refs #5
0.5
- Foreign keys are now all added at the end, which means we can support circular foreign key references #1
- Dropped dependency on
toposort
- Added
--all --skip=table
option for skipping one or more tables when running --all
0.4
- Create
--all
tables in toposort order
- Depend on sqlite-utils version 0.14 or higher
0.3
Anchor to sqlite-utils==0.13 to pick up a breaking change.
0.2
--all
option can now be used to duplicate an entire database, including detecting foreign key relationships.
--table
option called without --sql
will now mirror the specified table.