Da come lo descrivi sembra dovuto all'attributo "ON UPDATE CURRENT_TIMESTAMP", ma nel dump che hai postato non ce n'è traccia.
Prova a fare un dump della tabella in remoto, ma mi pare che da MySQL 4.1 l'attributo venga aggiunto in automatico:
http://dev.mysql.com/doc/refman/4.1/en/timestamp.html
Prova anche ad eseguire:The first TIMESTAMP column in table row automatically is updated to the current timestamp when the value of any other column in the row is changed, unless the TIMESTAMP column explicitly is assigned a value other than NULL.
If a DEFAULT value is specified for the first TIMESTAMP column when the table is created, it is silently ignored.
codice:ALTER TABLE `news` CHANGE `data` `data` TIMESTAMP DEFAULT NULL