Open YukiTsuchida opened 2 months ago
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!
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!