-- Add job_image column to jobs table if it doesn't exist
-- Run this if you get an error about 'job_image' column not found
ALTER TABLE jobs ADD COLUMN IF NOT EXISTS job_image VARCHAR(255) DEFAULT NULL AFTER description;
