Hello,
I've got a problem with timestamp fields that default to CURRENT_TIMESTAMP.
If I add data to the table using the “Table Data” tab, the timestamp field in the new row is displayed as filled with the word CURRENT_TIMESTAMP. When saving this record, it seems that SQLyog does fill the field with 0000-00-00 00:00:00 so that mySQL does not record the timestamp but 0000-00-00 00:00:00.
EDIT:
SQLyog creates an INSERT INTO … (`created`) values (`CURRENT_TIMESTAMP`) instruction. This certainly won't work…