fix(db): check if the global_item_id column exists before trying to add it.

This commit is contained in:
ryan 2025-03-21 01:45:16 +03:00
parent 12f4043e83
commit fe98c56872

View file

@ -271,13 +271,21 @@ mod db_impl {
e e
})?; })?;
// Add a global_item_id column to the items table // Check if the global_item_id column exists
conn.execute_batch( let mut stmt = conn.prepare("PRAGMA table_info(items);")?;
"ALTER TABLE items ADD COLUMN global_item_id TEXT;" let columns: Vec<String> = stmt
).map_err(|e| { .query_map([], |row| row.get(1))? // Column 1 contains the column names
eprintln!("Failed adding global_item_id to items table: {}", e); .collect::<Result<_, _>>()?;
e
})?; if !columns.contains(&"global_item_id".to_string()) {
conn.execute_batch(
"ALTER TABLE items ADD COLUMN global_item_id TEXT;"
)
.map_err(|e| {
eprintln!("Failed adding global_item_id to items table: {}", e);
e
})?;
}
// 4. Table for selected properties // 4. Table for selected properties
conn.execute_batch( conn.execute_batch(