USE candidb_main; -- Add interview_style column to jobs table ALTER TABLE jobs ADD COLUMN interview_style ENUM('personal', 'balanced', 'technical') DEFAULT 'balanced' AFTER interview_questions; -- Update existing records to have 'balanced' as default UPDATE jobs SET interview_style = 'balanced' WHERE interview_style IS NULL;