Files
turftracker/database/migrations/add_archived_status_to_application_plans.sql
Jake Kasper 2075d6f121 database
2025-08-27 13:32:45 -04:00

9 lines
461 B
SQL

-- Add 'archived' status to application_plans table
-- This migration updates the check constraint to allow 'archived' status
-- Drop the existing check constraint
ALTER TABLE application_plans DROP CONSTRAINT application_plans_status_check;
-- Add the new check constraint with 'archived' included
ALTER TABLE application_plans ADD CONSTRAINT application_plans_status_check
CHECK (status IN ('planned', 'in_progress', 'completed', 'cancelled', 'archived'));