Skip to content
New issue

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

Incorrect Mapping of uuid Type to string in DBML Output #57

Open
YukiTsuchida opened this issue Sep 14, 2024 · 0 comments
Open

Incorrect Mapping of uuid Type to string in DBML Output #57

YukiTsuchida opened this issue Sep 14, 2024 · 0 comments

Comments

@YukiTsuchida
Copy link

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):

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant