Yii2. when I save ActiveRecord object that has autogenerated field date:
$obj = new Something();
$obj->name = 'abc';
// $obj->date.... not specified but generates by db engine
$obj->save();
Is it possible to get $obj->date without reinitializing object like
$obj = Something::findOne($obj->id);
?