-- Migration: Add manager_id column to projects (was referenced in edit.php but missing from DB)
ALTER TABLE `projects`
  ADD COLUMN IF NOT EXISTS `manager_id` INT UNSIGNED NULL DEFAULT NULL;
