owpengram-server/deploy/migrations/0036_channel_discussion_links.up.sql
2026-06-04 01:37:39 +08:00

8 lines
320 B
SQL

-- 0036_channel_discussion_links: persist bidirectional broadcast <-> discussion group links.
ALTER TABLE channels
ADD COLUMN IF NOT EXISTS linked_chat_id BIGINT NOT NULL DEFAULT 0;
CREATE INDEX IF NOT EXISTS channels_linked_chat_idx
ON channels (linked_chat_id)
WHERE linked_chat_id <> 0 AND NOT deleted;