企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
``` //模型修改 //$obj=Test::find()->where(['id'=>10])->one(); //$obj->migration='this'; //$obj->batch=5; //$status=$obj->save(); //使用createCommand()修改 $status=\Yii::$app->db->createCommand()->update('{{%migrations}}',[ 'migration'=>'this is migration', 'batch'=>3 ],[ 'id'=>11 ])->execute(); var_dump($status); ```