feat: group_node schema + projector handlers

This commit is contained in:
Joseph Doherty
2026-04-26 15:46:16 -04:00
parent b8335895e1
commit a0d7debce5
3 changed files with 159 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
CREATE TABLE group_node (
chat_id TEXT PRIMARY KEY,
members_json TEXT NOT NULL,
summary TEXT NOT NULL DEFAULT '',
dynamic TEXT NOT NULL DEFAULT '',
threads_json TEXT NOT NULL DEFAULT '[]',
updated_at TEXT NOT NULL DEFAULT (datetime('now'))
);