From 4a43990c6c2a8329b406638a559d443d4abf951c Mon Sep 17 00:00:00 2001 From: Zhulien Ivanov Date: Sat, 18 Feb 2023 16:46:25 +0200 Subject: [PATCH] docs: Fix typo. --- .../100-components/01-prisma-schema/04-data-model.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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