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

3 lines
167 B
SQL

CREATE INDEX IF NOT EXISTS channel_message_reactions_unread_owner_idx
ON channel_message_reactions (channel_id, sender_user_id, message_id DESC)
WHERE unread;