dev #4
1 changed files with 15 additions and 7 deletions
22
src/db.rs
22
src/db.rs
|
@ -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(
|
||||||
|
|
Loading…
Add table
Reference in a new issue