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

Feature Request: Table Group Support

Open okaisti opened this issue 2 years ago • 0 comments

Generate table groups: https://dbdiagram.io/docs/table-groups, with some mechanism example:

/// @TableGroup("tenant") model Account { id String @id ... } /// @TableGroup("tenant") model User { id String @id ... }

generates:

TableGroup tenant { Account User }

okaisti avatar Feb 09 '23 14:02 okaisti