Simple schema migration tool for rusqlite using user_version instead of an SQL table to maintain the current schema version.
There is a set of SQL statements and you just append to it to change the schema.
No need to add a table to be parsed, the user_version
field is at a fixed offset in the sqlite file format.
Please see examples/quick_start.rs
.