mirror of
https://github.com/renee-png/acmcc.git
synced 2026-06-21 01:40:01 +00:00
183fe0a93c
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
15 lines
378 B
SQL
15 lines
378 B
SQL
ALTER TABLE public.arc_applications
|
|
DROP CONSTRAINT IF EXISTS arc_applications_status_check;
|
|
|
|
ALTER TABLE public.arc_applications
|
|
ADD CONSTRAINT arc_applications_status_check
|
|
CHECK (status = ANY (ARRAY[
|
|
'submitted'::text,
|
|
'pending'::text,
|
|
'under_review'::text,
|
|
'awaiting_changes'::text,
|
|
'in-review'::text,
|
|
'approved'::text,
|
|
'denied'::text,
|
|
'withdrawn'::text
|
|
])); |