Rebase fix - Reworking approach to sql for take

This commit is contained in:
Mikayla Maki 2022-10-19 11:36:01 -07:00
parent 72c1ee904b
commit 60ebe33518
3 changed files with 12 additions and 31 deletions

View file

@ -1,7 +1,7 @@
use rusqlite_migration::{Migrations, M};
// use crate::items::ITEMS_M_1;
use crate::kvp::KVP_M_1_UP;
use crate::{items::ITEMS_M_1, kvp::KVP_M_1_UP};
// 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,6 +10,6 @@ use crate::kvp::KVP_M_1_UP;
lazy_static::lazy_static! {
pub static ref MIGRATIONS: Migrations<'static> = Migrations::new(vec![
M::up(KVP_M_1_UP),
// M::up(ITEMS_M_1),
M::up(ITEMS_M_1),
]);
}