prisma-dbml-generator icon indicating copy to clipboard operation
prisma-dbml-generator copied to clipboard

Prisma DBML Generator

Results 22 prisma-dbml-generator issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/8672915/177208978-02a7d8cb-246a-4fc9-9de8-1a717b381ae0.png) there seems to be another issue that isn't caught by the tests, because when generating in a reasonably sized project it's frozen, when removing the dbml generator provider it...

This request is similar to #33 but is different because I need the ability to exclude all [relation fields](https://www.prisma.io/docs/concepts/components/prisma-schema/relations#relation-fields) from the generated DBML. Relation fields are not present in the...

since this is supposed to be the actual database diagram, shouldn't the generated dbml use the mapped table and column names from `@map` and `@@map` ?

If I take the example from the readme, I see that both the Category object in post and the category-to-post relation are represented in the output. I think the relation-as-an-attribute...

I am using husky to execute pre-commit script. I have there something like: ``` ... ./node_modules/.bin/prisma generate Error: Generator at prisma-dbml-generator could not start: /bin/sh: 1: prisma-dbml-generator: not found Everything...

I there, First thank you for maintaining this prisma generator, it's very useful =) ### Problem I'm reporting this issue cause I am not able to have the manyMany join...

Currently, I have a situation where I need disable the generator for DBML. A option, like `DISABLE_DBML` will be very useful. ```sh cross-env DISABLE_DBML=true prisma generate ``` Thanks!