Browse Source

Update PgClient.ts

Add semicolon;
pull/5399/head
Dhanushka 1 year ago committed by GitHub
parent
commit
3fb2c5178c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nocodb/src/lib/db/sql-client/lib/pg/PgClient.ts

2
packages/nocodb/src/lib/db/sql-client/lib/pg/PgClient.ts

@ -474,7 +474,7 @@ class PGClient extends KnexClient {
]);
}
const schemaName = this.connectionConfig.searchPath?.[0] || 'public'
const schemaName = this.connectionConfig.searchPath?.[0] || 'public';
// Check schemaExists because `CREATE SCHEMA IF NOT EXISTS` requires permissions of `CREATE ON DATABASE`
const schemaExists = !!(

Loading…
Cancel
Save