Releases: simonw/sqlite-chronicle
Releases · simonw/sqlite-chronicle
0.4
0.3
AFTER UPDATE
trigger now detects if the row data has not changed and avoids incrementing the version and__updated_ms
if that is the case. #10- New naming convention for columns on the chronicle table:
added_ms
,updated_ms
,version
,deleted
are now__added_ms
,__updated_ms
,__version
,__deleted
. - New CLI mechanism:
python -m sqlite_chronicle data.db table1 table2
to enable chronicle for the specified tables. #8 - Noted that
INSERT OR REPLACE INTO ...
will trigger a version bump even if the row data has not changed. Recommend usingINSERT INTO ... ON CONFLICT
to avoid this problem. #7