In MySQL, we can execute this where it updates the column 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?