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
When using the Prisma schema with a uuid type, the DBML output is incorrectly mapping the field as string instead of uuid.
Prisma Schema (input):
model User { id String @id @db.Uuid }
DBML Output:
Table users { id String [pk] }
Expected DBML Output:
Table users { id uuid [pk] }
It would be helpful if the DBML output could correctly reflect the uuid type from the Prisma schema. Thank you!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using the Prisma schema with a uuid type, the DBML output is incorrectly mapping the field as string instead of uuid.
Example
Prisma Schema (input):
DBML Output:
Expected DBML Output:
It would be helpful if the DBML output could correctly reflect the uuid type from the Prisma schema. Thank you!
The text was updated successfully, but these errors were encountered: