1use rusqlite_migration::{Migrations, M};
2
3// use crate::items::ITEMS_M_1;
4use crate::{kvp::KVP_M_1, pane::PANE_M_1, WORKSPACE_M_1};
5
6// This must be ordered by development time! Only ever add new migrations to the end!!
7// Bad things will probably happen if you don't monotonically edit this vec!!!!
8// And no re-ordering ever!!!!!!!!!! The results of these migrations are on the user's
9// file system and so everything we do here is locked in _f_o_r_e_v_e_r_.
10lazy_static::lazy_static! {
11 pub static ref MIGRATIONS: Migrations<'static> = Migrations::new(vec![
12 M::up(KVP_M_1),
13 M::up(WORKSPACE_M_1),
14 M::up(PANE_M_1)
15 ]);
16}