Führen Sie dies in Ihrem MySQL aus:
ALTER TABLE `mytable`
CHANGE COLUMN `DateTime` `DateTime` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ;
Dadurch wird Ihr Standardwert auf CURRENT_TIMESTAMP
gesetzt .
Führen Sie dies in Ihrem MySQL aus:
ALTER TABLE `mytable`
CHANGE COLUMN `DateTime` `DateTime` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ;
Dadurch wird Ihr Standardwert auf CURRENT_TIMESTAMP
gesetzt .