mirror of
https://github.com/renee-png/acmcc.git
synced 2026-06-21 09:50:01 +00:00
Add ACMCC app source, Supabase backend, and project config
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
-- Add 'fined' to violations status check
|
||||
ALTER TABLE public.violations DROP CONSTRAINT violations_status_check;
|
||||
ALTER TABLE public.violations ADD CONSTRAINT violations_status_check CHECK (status = ANY (ARRAY['open', 'pending', 'resolved', 'escalated', 'closed', 'fined']));
|
||||
|
||||
-- Create missing associations
|
||||
INSERT INTO public.associations (id, name, status) VALUES
|
||||
('be7cbde1-3bd6-4728-8a92-a43aa0f39d1d', 'Las Palmos Community Association', 'active'),
|
||||
('b07d0163-6897-4908-9dcf-2d8049afaa96', 'Main Street Community Association', 'active')
|
||||
ON CONFLICT (id) DO NOTHING;
|
||||
Reference in New Issue
Block a user