-- Add 'consumable' to repair_line_item_type enum ALTER TYPE repair_line_item_type ADD VALUE IF NOT EXISTS 'consumable'; -- Add is_consumable flag to product table ALTER TABLE product ADD COLUMN IF NOT EXISTS is_consumable boolean NOT NULL DEFAULT false;