You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
appflowy/configs/migrations/20240531031836_chat_message...

8 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;