feat: Implement member inbox with read status and question functionality
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 53s

This commit is contained in:
Torsten Schulz (local)
2026-07-24 09:17:57 +02:00
parent 63a5db1196
commit e2e8ba0d54
9 changed files with 211 additions and 17 deletions

View File

@@ -0,0 +1,3 @@
ALTER TABLE club_communication_recipients
ADD COLUMN read_at DATETIME NULL AFTER delivered_at,
ADD INDEX club_communication_recipients_member_read (club_id, member_id, read_at);