作为标题,使用以下代码更新消息后:
$id = 1;
$message ="Updated";
Post::where(['id' => $id])->update(['message' => $message]);
created_at和updated_at都更改为当前时间戳。
使用更新时,如何使其仅更新时间戳 updated_at 而不在 created_at 更新时间戳?
谢谢
作为标题,使用以下代码更新消息后:
$id = 1;
$message ="Updated";
Post::where(['id' => $id])->update(['message' => $message]);
created_at和updated_at都更改为当前时间戳。
使用更新时,如何使其仅更新时间戳 updated_at 而不在 created_at 更新时间戳?
谢谢