Skip to content

Instantly share code, notes, and snippets.

@evercode1
Created December 31, 2014 17:09
Show Gist options
  • Select an option

  • Save evercode1/a88e938a5ee34dc3b209 to your computer and use it in GitHub Desktop.

Select an option

Save evercode1/a88e938a5ee34dc3b209 to your computer and use it in GitHub Desktop.
Behaviors Chap 5
/**
* behaviors
*/
public function behaviors()
{
return [
'timestamp' => [
'class' => 'yii\behaviors\TimestampBehavior',
'attributes' => [
ActiveRecord::EVENT_BEFORE_INSERT => ['created_at', 'updated_at'],
ActiveRecord::EVENT_BEFORE_UPDATE => ['updated_at'],
],
'value' => new Expression('NOW()'),
],
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment