Given the following enum in `schema.prisma` ``` enum Role { ADMIN @map("admin") @@map("role") } ``` The generated JavaScript contains ```js exports.Role = makeEnum({ ADMIN: 'ADMIN', }); ``` The value should be the same as inside the map
Given the following enum in
schema.prismaThe generated JavaScript contains
The value should be the same as inside the map