
Originally Posted by
r937
be careful with using TIMESTAMP for "last updated"
sometimes, you may want to make global changes to your data, e.g. instead of using <b>...</b> you want to replace these with <strong>...</strong> in every post where they occur
this is an example of a trivial update, yes? at least, from the point of view of the users' data
if you use DATETIME for last_updated, you can go ahead, and not disturb anything, but if you use TIMESTAMP, then every row you touch will have its last_updated value changed
i personally would use DATETIME instead of TIMESTAMP for any column that users can see
Bookmarks