I want to set date as default value for date in mysql (not timestamp), but the following error appear
ALTER TABLE `RMS`.`transactionentry` CHANGE `Date` `Da
You can change the column definition with:
ALTER TABLE transactionentry MODIFY COLUMN `Date` date null;
Allow null works for me.