-- =============================================
-- FIX JACOB'S SPECIALIZATION PATH
-- The DB reset wiped the path selection.
-- This restores it so the widget shows correct progress instead of "Foundations Phase".
-- =============================================

UPDATE users 
SET primary_path = 'TI', secondary_path = 'SIEM' 
WHERE id = 34;

-- Check the result
SELECT id, name, current_level, primary_path, secondary_path 
FROM users u 
JOIN user_xp x ON u.id = x.user_id 
WHERE u.id = 34;
