Releases: simonw/sqlite-utils
Releases · simonw/sqlite-utils
2.10.1
2.10
2.9.1
- Added custom project links to the PyPI listing.
2.9
- New
sqlite-utils drop-table
command, see Dropping tables. (#111) - New
sqlite-utils drop-view
command, see Dropping views. - Python
decimal.Decimal
objects are now stored asFLOAT
. (#110)
2.8
- New
sqlite-utils create-table
command, see Creating tables. (#27) - New
sqlite-utils create-view
command, see Creating views. (#107)
2.7.2
2.7.1
- New
sqlite-utils views my.db
command for listing views in a database, see Listing views. (#105) sqlite-utils tables
(andviews
) has a new--schema
option which outputs the table/view schema, see Listing tables. (#104)- Nested structures containing invalid JSON values (e.g. Python bytestrings) are now serialized using
repr()
instead of throwing an error. (#102)
2.7
- New
columns=
argument for the.insert()
,.insert_all()
,.upsert()
and.upsert_all()
methods, for over-riding the auto-detected types for columns and specifying additional columns that should be added when the table is created. See Custom column order and column types. (#100)