2 Replies
This functionality is not in postgres itself, you should use Triggers to simulate it: https://aviyadav231.medium.com/automatically-updating-a-timestamp-column-in-postgresql-using-triggers-98766e3b47a0
Medium
Automatically updating a timestamp column in PostgreSQL using Triggers
Keeping a record of when was a table last modified is very crucial and important for us. Unlike MySql, Postgres doesn’t come with inbuilt…
Will do, thanks Noahh!