This repository has been archived on 2026-04-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/server/database/migrations/017_unread.sql
2026-03-06 23:17:03 +00:00

11 lines
415 B
SQL

-- ==========================================
-- Chat Switchboard — 017 Unread Counts
-- ==========================================
-- Adds last_read_message_id to channel_participants for
-- per-user unread count computation.
-- ICD §3 (Channels & Conversations) — v0.23.2
-- ==========================================
ALTER TABLE channel_participants
ADD COLUMN IF NOT EXISTS last_read_message_id UUID;