Eric Bower
·
2022-11-08
1ALTER TABLE posts ADD expires_at timestamp without time zone;
2
3UPDATE posts SET expires_at = NOW() + INTERVAL '7 day' WHERE cur_space='pastes';
1ALTER TABLE posts ADD expires_at timestamp without time zone;
2
3UPDATE posts SET expires_at = NOW() + INTERVAL '7 day' WHERE cur_space='pastes';