Rebase fix + Started writing the real SQL we're going to need
This commit is contained in:
parent
e5c6393f85
commit
500ecbf915
8 changed files with 109 additions and 81 deletions
|
@ -1,7 +1,7 @@
|
|||
use rusqlite_migration::{Migrations, M};
|
||||
|
||||
// use crate::items::ITEMS_M_1;
|
||||
use crate::kvp::KVP_M_1;
|
||||
use crate::{kvp::KVP_M_1, WORKSPACE_M_1};
|
||||
|
||||
// This must be ordered by development time! Only ever add new migrations to the end!!
|
||||
// Bad things will probably happen if you don't monotonically edit this vec!!!!
|
||||
|
@ -10,5 +10,6 @@ use crate::kvp::KVP_M_1;
|
|||
lazy_static::lazy_static! {
|
||||
pub static ref MIGRATIONS: Migrations<'static> = Migrations::new(vec![
|
||||
M::up(KVP_M_1),
|
||||
M::up(WORKSPACE_M_1)
|
||||
]);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue