-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
code-generatorIssue relates to the code generatorIssue relates to the code generatorenhancementNew feature or requestNew feature or request
Description
Right now, the code generator will create SQL queries which contain the schema name in front of the table name. Like this:
SELECT * FROM "public.users" WHERE "email" = $1This looks ugly when there is just one schema in the database, which would usually be the case. We have to create the option to generate SQL queries without the schema name in front of tables when only one schema is present so that the query looks more like:
SELECT * FROM "users" WHERE "email" = $1Metadata
Metadata
Assignees
Labels
code-generatorIssue relates to the code generatorIssue relates to the code generatorenhancementNew feature or requestNew feature or request