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" = $1
This 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:
Right now, the code generator will create SQL queries which contain the schema name in front of the table name. Like this:
This 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: