Tagged Questions
2
votes
1answer
517 views
MySQL: add created and modified fields
What's the best approach to add created and modified fields in MySQL:
1) using MySQL features like on update CURRENT_TIMESTAMP or
2) using PHP (or something else)? Why?
If the answer is MySQL, how ...
1
vote
1answer
37 views
created modified function (default) is not working in Cakephp 1.2 version
I created an application and all the db tables have 'created,modified' fields that filled automatically by Cakephp's Default Functionality.
And i put the Field Type is
created datetime NULL,
modified ...
0
votes
1answer
77 views
Rename DB Fields after Bake
i realised (after baking and much customisation) that i can use DB fields called 'created' and 'modified' (as long as the are type Datetime and default NULL) to get built in functionality to save ...