In Mysql, we can execute this where it updates the changetimestamp every time the row is changed.
create table ab (
id int,
changeTimestamp timestamp
NOT NULL
default CURRENT_TIMESTAMP
on update CURRENT_TIMESTAMP
);
Is there something similar to do the above in Postgresql?