Current state

This commit is contained in:
Chariah
2026-06-26 14:24:59 +02:00
commit 60892d6151
153 changed files with 27248 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
ALTER TABLE conversation_participants ADD COLUMN IF NOT EXISTS last_read_at TIMESTAMPTZ;
UPDATE conversation_participants SET last_read_at = NOW() WHERE last_read_at IS NULL;