mysql: removing a timestamps on update CURRENT_TIMESTAMP
Situation: you have a table and a timestamp in it. Thee is a on update CURRENT_TIMESTAMP on the column. But you want to get rid of it:
ALTER TABLE yourTable
CHANGE someCol somecol TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP