Search, chat and research over parliamentary speeches and documents
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

7 lines
276 B

ALTER TABLE chat_snapshots
ADD COLUMN IF NOT EXISTS last_activity TIMESTAMPTZ DEFAULT NOW();
UPDATE chat_snapshots SET last_activity = created_at WHERE last_activity IS NULL;
CREATE INDEX IF NOT EXISTS chat_snapshots_last_activity_idx
ON chat_snapshots (last_activity);