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; |