Files
galaxy/crates/persistence/migrations/2025-04-08-215957_add_last_conversations/up.sql
T

9 lines
248 B
SQL

CREATE TABLE last_ai_conversations (
id INTEGER PRIMARY KEY NOT NULL,
conversation_id TEXT NOT NULL,
exchanges TEXT NOT NULL,
phase TEXT NOT NULL,
has_dispatched_plan BOOLEAN NOT NULL,
pane_leaf_uuid BLOB NOT NULL
);