We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
referentialIntegrity
relationMode
The relationMode field was renamed in Prisma version 4.5.0, and was previously named referentialIntegrity.
https://www.prisma.io/docs/concepts/components/prisma-schema/relations/relation-mode#how-to-set-the-relation-mode-in-your-prisma-schema
createSchema({ datasource: { referentialIntegrity: "prisma", // ... }, // ...
should be updated to
createSchema({ datasource: { relationMode: "prisma", // ... }, // ...
The text was updated successfully, but these errors were encountered:
#65 Add 'relationMode' attribute as an option to datasource
c7c5821
bd6181c
Closing, #67 has been released in v1.12.0
Thank you so much for the notification, sorry for the delay in getting the fix pushed up.
Sorry, something went wrong.
No branches or pull requests
https://www.prisma.io/docs/concepts/components/prisma-schema/relations/relation-mode#how-to-set-the-relation-mode-in-your-prisma-schema
should be updated to
The text was updated successfully, but these errors were encountered: