AppFlowy-Cloud/migrations/20240531031836_chat_message_meta.sql
Nathan.fooo b36715dc24
chore: generate answer manually (#594)
* chore: generate answer manually

* chore: rename

* chore: return reply message id

* chore: save message

* chore: commit schema files
2024-06-03 08:06:23 +08:00

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;