Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. public function behaviors()
  2. {
  3. return [
  4. 'timestamp' => [
  5. 'class' => 'yiibehaviorsTimestampBehavior',
  6. 'attributes' => [
  7. ActiveRecord::EVENT_BEFORE_INSERT => ['log_in_time' ],
  8. ActiveRecord::EVENT_BEFORE_UPDATE => ['log_in_time'],
  9. ],
  10. 'value' => new Expression('NOW()'),
  11. ],
  12. ];
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement