diff --git a/content/200-concepts/100-components/01-prisma-schema/06-relations/400-self-relations.mdx b/content/200-concepts/100-components/01-prisma-schema/06-relations/400-self-relations.mdx index 469551ba26..14ac5fa1f8 100644 --- a/content/200-concepts/100-components/01-prisma-schema/06-relations/400-self-relations.mdx +++ b/content/200-concepts/100-components/01-prisma-schema/06-relations/400-self-relations.mdx @@ -321,8 +321,8 @@ If you need the relation to hold other fields, you can create an [explicit](many model User { id Int @id @default(autoincrement()) name String? - followedBy Follows[] @relation("following") - following Follows[] @relation("follower") + followedBy Follows[] @relation("follower") + following Follows[] @relation("following") } model Follows {