migrations.rs

 1use rusqlite_migration::{Migrations, M};
 2
 3lazy_static::lazy_static! {
 4    pub static ref MIGRATIONS: Migrations<'static> = Migrations::new(vec![M::up(
 5        "CREATE TABLE kv_store(
 6            key TEXT PRIMARY KEY,
 7            value TEXT NOT NULL
 8        ) STRICT;",
 9    )]);
10}