feat: add tagged red thread connections

This commit is contained in:
2026-08-14 16:37:50 +02:00
parent 46bb2ba5ec
commit f97dceb4fe
12 changed files with 201 additions and 37 deletions
+6
View File
@@ -0,0 +1,6 @@
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)';