Voer dit uit in uw MySQL:
ALTER TABLE `mytable`
CHANGE COLUMN `DateTime` `DateTime` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ;
Dit stelt uw standaardwaarde in op CURRENT_TIMESTAMP
.
Voer dit uit in uw MySQL:
ALTER TABLE `mytable`
CHANGE COLUMN `DateTime` `DateTime` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ;
Dit stelt uw standaardwaarde in op CURRENT_TIMESTAMP
.