Changeset 0.23.2 (#155)

This commit is contained in:
2026-03-06 23:17:03 +00:00
parent 4c6555cb06
commit 2dc4514a57
36 changed files with 2784 additions and 192 deletions

View File

@@ -0,0 +1,10 @@
-- ==========================================
-- 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;

View File

@@ -0,0 +1,3 @@
-- Chat Switchboard — 017 Unread Counts (SQLite)
ALTER TABLE channel_participants ADD COLUMN last_read_message_id TEXT;