Files
gupi-osint-board/migrations/009_connection_tightness.sql
T

7 lines
373 B
SQL
Raw Normal View History

2026-08-14 16:37:50 +02:00
ALTER TABLE osint.exhibit_connections
ADD COLUMN tightness SMALLINT NOT NULL DEFAULT 65
CHECK (tightness BETWEEN 0 AND 100);
COMMENT ON COLUMN osint.exhibit_connections.label IS 'Investigator-authored tag describing the meaning of this thread';
COMMENT ON COLUMN osint.exhibit_connections.tightness IS 'Visual thread tautness percentage from 0 (slack) to 100 (taut)';