owpengram-server/deploy/migrations/0023_message_effect.up.sql

6 lines
617 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 消息特效message effectmessages.sendMessage/sendMedia 的 effect:flags2.2?long
-- 私聊 1-1 专属动画特效(🎉/👍 等,发送方与接收方双向播放)。官方所有客户端仅在私聊
-- 显示特效选择器,群/频道从不渲染,故只镜像私聊两张表(共享主体 + 每 owner 收件箱),
-- channel_messages 不加列。镜像 via_bot_id / grouped_id 的标量列写法bigint0 表无特效)。
ALTER TABLE public.private_messages ADD COLUMN effect bigint DEFAULT 0 NOT NULL;
ALTER TABLE public.message_boxes ADD COLUMN effect bigint DEFAULT 0 NOT NULL;