Files
attune/migrations/20260220000000_relax_key_ref_format.sql
2026-02-20 14:11:06 -06:00

8 lines
427 B
SQL

-- Migration: Relax key ref format constraint
-- Description: Allow multi-segment dot-separated key refs (e.g., "pack.prefix.name")
-- The original constraint only allowed at most one dot: '^([^.]+\.)?[^.]+$'
-- Sensors create refs like "python_example.counter.rule_ref" which have multiple dots.
ALTER TABLE key DROP CONSTRAINT key_ref_format;
ALTER TABLE key ADD CONSTRAINT key_ref_format CHECK (ref ~ '^[^.]+(\.[^.]+)*$');