Files
galaxy/crates/persistence/migrations/2025-08-19-180453_drop_last_ai_conversations/down.sql
T

9 lines
241 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
);