carepath-api / scripts /schema /004-intervention.sql
tranth3truong's picture
Deploy public Scribe-only CarePath Space
cc678b9
Raw
History Blame Contribute Delete
600 Bytes
-- Harness v0 schema - migration 004
-- Review, human, CI, or agent interventions separated from normal traces.
CREATE TABLE intervention (
id INTEGER PRIMARY KEY AUTOINCREMENT,
created_at TEXT NOT NULL DEFAULT (datetime('now')),
trace_id INTEGER REFERENCES trace(id),
story_id TEXT,
type TEXT NOT NULL CHECK(type IN ('correction','override','escalation','approval')),
description TEXT NOT NULL,
source TEXT NOT NULL CHECK(source IN ('human','reviewer','ci','agent')),
impact TEXT
);
INSERT INTO schema_version (version) VALUES (4);