标签:timestamp upd amp value date logs expr now() function
use yii\behaviors\TimestampBehavior; use yii\behaviors\BlameableBehavior; use yii\db\Expression; /** * @inheritdoc * 插入创建者及创建时间/更新者及更新时间 */ public function behaviors() { return [ [ ‘class‘ => TimestampBehavior::className(), ‘value‘ => new Expression(‘NOW()‘), ], BlameableBehavior::className(), ]; }
YII2 自动 created_at created_by updated_by updated_at
标签:timestamp upd amp value date logs expr now() function
原文地址:http://www.cnblogs.com/yangyuqiu/p/6416737.html