mirror of
https://git.coastit.co.za/caitlin/CRM_ENVR.git
synced 2026-07-10 11:15:43 +02:00
2 lines
174 B
SQL
2 lines
174 B
SQL
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; |