When developing database tables for a new new project, is it recommended to add the last_modified column, which is automatically updated, for each table?
Is the performance successful for automatically updating the latest_modified columns to make it useful?
There may be several uses in this column, one of which will help with caching. But is it too easy to throw such a column on every table?
Also, are there other useful reasons to have a last_modified column?
This applies to MySQL , as it is the only system I use.
Vamos source
share