It looks as if the colums is probably a TIMESTAMP type with the ON UPDATE CURRENT_TIMESTAMP clause causing it to change whenever the row is updated. So try to change the timestamp definition to
columnname TIMESTAMP DEFAULT CURRENT_TIMESTAMP;
here is more about the TIMESTAMP type:
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --