gpt4 book ai didi

laravel - 如何在不更新 created_at 时间戳的情况下更新模型?

转载 作者:行者123 更新时间:2023-12-02 01:38:48 26 4
gpt4 key购买 nike

Laravel 在每个表上都有两个时间戳(created_at 和 updated_at)。我认为它会在插入新行时插入 created_at 并在更新时更新 updated_at。然而,当我更新我的模型时,created_at 字段正在更新。

我该如何改变这种行为,或者我应该使用什么方法来更新一行并且只更新 updated_at 时间戳?现在我使用 $model->save();

 $point = Map::find($id);
$point->longitude = $request->longitude;
$point->latitude = $request->latitude;
$point->description = $request->description;
$point->save();

最佳答案

我找到了解决问题的方法。我手动创建了 created_at 和 updated_at 列,created_at 在更新时分配了 current_timestamp 属性。

关于laravel - 如何在不更新 created_at 时间戳的情况下更新模型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29566894/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com