Update cc-lib and extend nodestate sql schema

This commit is contained in:
2026-02-12 07:34:24 +01:00
parent bca7dd743b
commit f4ee0d1042
3 changed files with 4 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ CREATE TABLE "node_state" (
CHECK (health_state IN (
'full', 'partial', 'failed'
)),
health_metrics TEXT, -- JSON array of strings
node_id INTEGER,
FOREIGN KEY (node_id) REFERENCES node (id)
);