I am trying to alter catalog_no, but while altering it I am getting error regarding 'date_available' column
My SQL for altering catalog_no is:
ALTER TABLE `product` CHANGE `catalog_no` `catalogno` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL;
But this is giving me error #1067- Invalid default value for 'date_available'
What is the reason for this error and how can I solve it, Please help.
Thanks