rusqlite_migration 2.6.0

Simple schema migration library for rusqlite using user_version instead of an SQL table to maintain the current schema version.
Documentation
---
source: rusqlite_migration/src/tests/display.rs
expression: everything
snapshot_kind: text
---
M {
    up: "UP",
    up_hook: Some(
        MigrationHook(<closure>),
    ),
    down: Some(
        "DOWN",
    ),
    down_hook: Some(
        MigrationHook(<closure>),
    ),
    foreign_key_check: true,
    comment: Some(
        "Comment, likely a filename in practice!",
    ),
}