Merge pull request #212 from jmooves/upstream-pr/chat-messages-workflow-column

fix(db): add missing chat_messages.workflow column (user prompts dropped on reload)
This commit is contained in:
cosimoastrada 2026-07-21 12:49:06 +08:00 committed by GitHub
commit 0843e2909a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 13 additions and 0 deletions

View file

@ -550,6 +550,7 @@ create table if not exists public.chat_messages (
role text not null,
content jsonb,
files jsonb,
workflow jsonb,
citations jsonb,
created_at timestamptz not null default now()
);