I have the following sql create statement
mysql> CREATE TABLE IF NOT EXISTS `erp`.`je_menus` ( -> `id` INT(11) NOT NULL AUTO_INCREMENT , -&g
I had a similar issue with MySQL 5.7 with the following code:
`update_date` TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP
I fixed by using this instead:
`update_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP