diff --git a/content/200-concepts/100-components/01-prisma-schema/04-data-model.mdx b/content/200-concepts/100-components/01-prisma-schema/04-data-model.mdx index eaef478a8f..f48985c874 100644 --- a/content/200-concepts/100-components/01-prisma-schema/04-data-model.mdx +++ b/content/200-concepts/100-components/01-prisma-schema/04-data-model.mdx @@ -593,7 +593,7 @@ See [complete list of field and block attributes](/reference/api-reference/prism An ID uniquely identifies individual records of a model. A model can only have _one_ ID: -- In **relational databases**, the ID can be a single field with or based on multiple fields. If a model does not have an `@id` or an `@@id`, you must define a mandatory `@unique` field or `@@unique` block instead. +- In **relational databases**, the ID can be a single field or based on multiple fields. If a model does not have an `@id` or an `@@id`, you must define a mandatory `@unique` field or `@@unique` block instead. - In **MongoDB**, an ID must be a single field that defines an `@id` attribute and a `@map("_id")` attribute. #### Defining IDs in relational databases