Answer the question
In order to leave comments, you need to log in
How to save automatically date in timestamp format in yii2?
Guys, good afternoon, question
hung class
public function behaviors()
{
return [
'timestamp' => [
'class' => TimestampBehavior::className(),
'attributes' => [
ActiveRecord::EVENT_BEFORE_INSERT => 'created_at',
ActiveRecord::EVENT_BEFORE_UPDATE => 'updated_at',
],
],
];
}
Answer the question
In order to leave comments, you need to log in
https://donkovtcev.ru/notes/yii2-date-to-time-beha...
upd: I mixed up the question, probably just need to do this:
public function behaviors()
{
return [
'timestamp' => [
'class' => TimestampBehavior::className(),
'attributes' => [
ActiveRecord::EVENT_BEFORE_INSERT => 'created_at',
ActiveRecord::EVENT_BEFORE_UPDATE => 'updated_at'
],
'value' => new Expression('NOW()')
],
];
?>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question