omi_action_items
0 rows where conversation_id = "0d7e3e33-e5e0-4463-aa3e-6d8c5ea0b178"
This data as json
0 records
CREATE TABLE omi_action_items (
id INTEGER PRIMARY KEY AUTOINCREMENT,
conversation_id TEXT NOT NULL,
description TEXT,
FOREIGN KEY (conversation_id) REFERENCES omi_conversations(id)
);
CREATE INDEX idx_omi_actions_conv ON omi_action_items(conversation_id);