I have recently decided to stop using MySQL triggers for my created
and modified
date fields in my tables due to complications when running scripts included in the setup file on client deployment.
I have altered the fields this way: (example)
alter table users
modify `created` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00'
alter table users
modify `modified` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
ON UPDATE CURRENT_TIMESTAMP
When I now run my program and fill in a form to add data (form controls are databound), I get the message "Column 'created' does not allows nulls".
On already existing data, when I try to update, the modified date simply doesnt change.
I have looked at many articles such as Having both a Created and Last Updated timestamp columns in MySQL 4.0 but cannot find a solution.
How do I solve this?
I am using MySQL v 5.6.15.0