Initial commit

This commit is contained in:
2026-08-14 12:43:11 +02:00
commit fa78640227
25 changed files with 6003 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
CREATE TABLE osint.cases (
id TEXT PRIMARY KEY,
state_json JSONB NOT NULL,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);
COMMENT ON SCHEMA osint IS 'GUPI OSINT Board application data';
COMMENT ON TABLE osint.cases IS 'Server-authoritative investigation board state';