在我的laravel
项目中,我使用sqlite
在php artisan tinker
创建了以下记录。
App\Note {#642
id: "1",
card_id: "2",
body: "Some note for the card",
created_at: "2016-06-19 22:18:34",
updated_at: "2016-06-19 22:18:34",
}
如何将card_id
字段更改为1而不是2?
答案 0 :(得分:1)
$note = App\Note::find(1);
$note->card_id = '1';
$note->save();
答案 1 :(得分:0)
您可以使用Note
模型更新card_id
值。
$note = Note::find(1);
$note->update([
'card_id' => '1',
]);