From fe98c56872e4b4a94070babeee7c6977ac57ea89 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 21 Mar 2025 01:45:16 +0300 Subject: [PATCH] fix(db): check if the global_item_id column exists before trying to add it. --- src/db.rs | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/src/db.rs b/src/db.rs index 927fedf..059a261 100644 --- a/src/db.rs +++ b/src/db.rs @@ -271,13 +271,21 @@ mod db_impl { e })?; - // Add a global_item_id column to the items table - 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 - })?; + // Check if the global_item_id column exists + let mut stmt = conn.prepare("PRAGMA table_info(items);")?; + let columns: Vec = stmt + .query_map([], |row| row.get(1))? // Column 1 contains the column names + .collect::>()?; + + 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 conn.execute_batch(