Skip to content

Commit

Permalink
fix: moving let to const
Browse files Browse the repository at this point in the history
  • Loading branch information
bibhuty committed May 22, 2024
1 parent a6af116 commit 524674a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pg/Db.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default class Db {
if (tableOptions.schema) return;
const { table, verCol, joins } = tableOptions;

let tableInfoSchema = (
const tableInfoSchema = (
await this.query(sqlTag`
SELECT table_schema, table_type
FROM information_schema.tables
Expand Down

0 comments on commit 524674a

Please sign in to comment.