Richard Kaufman-L贸pez
02/04/2022, 8:31 PM///
comments work on enum values? https://www.prisma.io/docs/concepts/components/prisma-schema#commentsNurul
02/05/2022, 6:14 PM///
comments on enum values which is not supported yet_._ Could you please leave a 馃憤 so that prisma team could prioritise it.
Below enum would have the following dmmf
/// This is a user role which is added by comment
enum UserRole {
ADMIN ///this comment is not yet supported
USER
SECURITY
}
{
"UserRole": {
"name": "UserRole",
"values": [
{
"name": "ADMIN",
"dbName": null
},
{
"name": "USER",
"dbName": null
},
{
"name": "SECURITY",
"dbName": null
}
],
"dbName": null,
"documentation": "This is a user role which is added by comment"
}
}
Richard Kaufman-L贸pez
02/07/2022, 2:19 PMRichard Kaufman-L贸pez
02/07/2022, 2:19 PM