mirror of
https://github.com/AppFlowy-IO/AppFlowy-Cloud.git
synced 2025-04-19 03:24:42 -04:00
* chore: generate answer manually * chore: rename * chore: return reply message id * chore: save message * chore: commit schema files
7 lines
227 B
SQL
7 lines
227 B
SQL
-- Add migration script here
|
|
ALTER TABLE af_chat
|
|
ADD COLUMN meta_data JSONB DEFAULT '{}' NOT NULL;
|
|
|
|
ALTER TABLE af_chat_messages
|
|
ADD COLUMN meta_data JSONB DEFAULT '{}' NOT NULL,
|
|
ADD COLUMN reply_message_id BIGINT;
|