-- Migration: Add salary_negotiable column to jobs table -- Description: When true, salary is hidden and candidate sends proposal ALTER TABLE jobs ADD COLUMN IF NOT EXISTS salary_negotiable BOOLEAN DEFAULT false; COMMENT ON COLUMN jobs.salary_negotiable IS 'When true, salary is not displayed and candidate proposes their own';