diff --git a/content/200-orm/500-reference/100-prisma-schema-reference.mdx b/content/200-orm/500-reference/100-prisma-schema-reference.mdx index dd3d669e18..be22945929 100644 --- a/content/200-orm/500-reference/100-prisma-schema-reference.mdx +++ b/content/200-orm/500-reference/100-prisma-schema-reference.mdx @@ -2733,6 +2733,23 @@ If you're also using [`now()`](/orm/reference/prisma-schema-reference#now), the ::: +:::note + +If you pass an empty update clause, the @updatedAt value will remain unchanged. For example: + +```ts + +await prisma.user.update({ + where: { + id: 1, + }, + data: {}, //<- Empty update clause +}); + +``` + +::: + #### Arguments N/A