Fixed boolean and integer type attributes for MySQL #1786
Merged
+14
−14
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🐞 Describe the bug
When running the container and executing Prisma commands for MySQL, Prisma throws schema validation errors due to incorrect native type usage in
mysql-schema.prisma
. The current schema uses PostgreSQL-native types (@db.Integer
,@db.Boolean
, etc.), which are not valid for MySQL.🧪 Steps to reproduce
2.3.1
).env
is correctly set for a MySQL databaseWhich version of the API are you using?
latest
What is your environment?
Linux
Other environment specifications
No response
If applicable, paste the log output
Summary by Sourcery
Fix Prisma schema validation errors for MySQL by correcting unsupported native type annotations on Boolean and Int fields and restoring missing inverse relations on the Instance model.
Bug Fixes: