unchanged
Title
Automate timestamps in ActiveRecord models
There are dozens of ways to automate the setting of timestamps in yii ActiveRecordmodels. Two ways you can do this are 1. Via rules() 2. Via beforeSave()models, for example with behaviours or onBeforeSave methods. I sort of like the following method. To start off we need a database table. [sql] CREATE TABLE IF NOT EXISTS `Nodes` ( `id` bigint(20) NOT NULL auto_increment, `title` varchar(255) NOT NULL, `created` datetime NOT NULL, `modified` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ; Following this we'll generate the model with the Yii shell tool: model Node Nodes To create the crud functionality we need to type this: crud Node Thefirst way you can do it is via your model's rules. Here is an example.magic happens in the rules of the Node class [php] /** * @return array validation rules for model attributes. */ public function rules() { return array( array('title','length','max'=>255), array('title, created, modified', 'required'), array('modified','default','value'=>new CDbExpression('NOW()'),'setOnEmpty'=>false,'on'=>'update'), array('created,modified','default','value'=>new CDbExpression('NOW()'),'setOnEmpty'=>false,'on'=>'insert') ); } You see the two rules at the end, one changes the modified field when the record's being updated, and the other changes both fields when the record's being created. You'll also see the "new CDbExpression('NOW()')" statement. This passes "NOW()" to the MySQL server and it will not be escaped. MySQL will interpret it as a statement and not as a string. This means that the field types could have been any other date/time type (timestamp, etc.) and it would still work.Another solution is to use beforeSave() as follows: [php] public function beforeSave() { if ($this->isNewRecord) $this->created = new CDbExpression('NOW()'); else $this->modified = new CDbExpression('NOW()'); return parent::beforeSave(); } These areI find it a simple and elegantsolutionssolution to this issue.