TimestampBehavior::class, 'attributes' => [ ActiveRecord::EVENT_BEFORE_INSERT => ['created_at'] ] ] ]; } /** * @inheritdoc */ public function rules() { return [ [['id', 'goods_id', 'user_id', 'md_id'], 'integer'], [['created_at', 'attr'], 'string'], [['price'], 'number'], [['created_at'], 'safe'] ]; } }