aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0062-add-user-created-last-active.sql
blob: 0e8875870df8e19d50623f3d9d0273179893ab2e (plain)
1
2
3
4
5
6
7
BEGIN;

ALTER TABLE users ADD created timestamp default current_timestamp not null;
ALTER TABLE users ADD last_active timestamp default current_timestamp not null;

COMMIT;