LoginSignup
0
0

More than 1 year has passed since last update.

laravel updated_at を更新させない save,upsert

Posted at

updated_atを更新したくない場合は、以下のように書く。

save

hoge.php
$model = new User;
$model->data = "hoge";
$model->timestamps = false;//updated_atを更新しない
$model->save();

upsert時

hoge.php
$model = new User;
$model->timestamps = false;
$model->upsert($res,['id']);
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0