Quote:
The TIMESTAMP column type provides a type that you can use to automatically mark INSERT or UPDATE operations with the current date and time. If you have multiple TIMESTAMP columns, only the first one is updated automatically.
The solution is also provided in the MySql manual:
Quote:
TIMESTAMP columns other than the first may also be set to the current date and time. Just set the column to NULL or to NOW().
I suggest to use NOW(), though…