From 96fe83412ad41888ac33cd0636138bbdc1ebd8bd Mon Sep 17 00:00:00 2001 From: Jake Kasper Date: Fri, 22 Aug 2025 09:28:07 -0400 Subject: [PATCH] db fix again --- database/migrations/comprehensive_equipment_upgrade_fixed.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/database/migrations/comprehensive_equipment_upgrade_fixed.sql b/database/migrations/comprehensive_equipment_upgrade_fixed.sql index 18ca4f6..87f1955 100644 --- a/database/migrations/comprehensive_equipment_upgrade_fixed.sql +++ b/database/migrations/comprehensive_equipment_upgrade_fixed.sql @@ -73,6 +73,7 @@ ADD COLUMN IF NOT EXISTS power_source VARCHAR(50), -- General fields ADD COLUMN IF NOT EXISTS purchase_date DATE, ADD COLUMN IF NOT EXISTS purchase_price DECIMAL(10, 2), +ADD COLUMN IF NOT EXISTS notes TEXT, ADD COLUMN IF NOT EXISTS is_active BOOLEAN DEFAULT true; -- Step 6: Migrate existing data to new fields