I would like to add an 'expires' timestamp column to a MySQL database table, but I don't want it to be updated automatically with the current timestamp.
Basically, I'll be comparing this value e.g. 1650477744 with the current timestamp to see if the entry has expired.
Whenever I try to add such a field defined as a TIMESTAMP, it expects (I think) a formatted timestamp, like 2021-06-01 12:00:00.
How should I define the field?