Closed vjpr closed 2 years ago
Hi there, thanks for the feedback!
I've updated the builder so it forces public
schema on Postgres if not specified:
const config: IConfig = {
connection: {
// ...
},
metadata: {
schema: undefined, // will be forced to 'public'
},
output: {
// ...
},
strict: true,
};
const dialect = new DialectPostgres();
const builder = new ModelBuilder(config, dialect);
Let me know if it works for you
Thanks for making this. Just a small validation issue in programmatic interface.
schema
fieldpublic
for PG