mirror of
https://github.com/renee-png/acmcc.git
synced 2026-06-21 09:50:01 +00:00
183fe0a93c
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
4 lines
192 B
SQL
4 lines
192 B
SQL
ALTER TABLE public.units
|
|
ADD COLUMN IF NOT EXISTS status_tags text[] NOT NULL DEFAULT '{}'::text[];
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_units_status_tags ON public.units USING GIN (status_tags); |