Laravel - 如何在sqlite中更新字段值

时间:2016-06-19 22:47:16

标签: php sqlite laravel

在我的laravel项目中,我使用sqlitephp 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?

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',
]);