migrations.rs

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