Add ACMCC app source, Supabase backend, and project config

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-01 20:19:26 -04:00
parent 313b51b412
commit 183fe0a93c
1422 changed files with 259271 additions and 0 deletions
@@ -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;