En postgresql, debe usar un disparador. Puede seguir este enlace sobre cómo hacerlo https://x- team.com/blog/automatic-timestamps-with-postgresql/ .
Para resumir el artículo puedes hacer lo siguiente:
-
Cree la función Pl/Pgsql que se activará:
CREATE OR REPLACE FUNCTION trigger_set_timestamp() RETURNS TRIGGER AS $$ BEGIN NEW.updated_at = NOW(); RETURN NEW; END; $$ LANGUAGE plpgsql;
-
Crea tu tabla
CREATE TABLE mytable ( id SERIAL NOT NULL PRIMARY KEY, content TEXT, updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW() );
-
Y finalmente agregue el disparador:
CREATE TRIGGER set_timestamp BEFORE UPDATE ON mytable FOR EACH ROW EXECUTE FUNCTION trigger_set_timestamp();
Puede encontrar más información sobre la pregunta aquí:https://dba.stackexchange.com/questions/58214/getting-last-modification-date-of-a-postgresql-database-table
Espero que te ayude.