From 524674a816fcf787ffe5a001aec72d88336089aa Mon Sep 17 00:00:00 2001 From: bibhuty-did-this Date: Wed, 22 May 2024 13:12:47 +0530 Subject: [PATCH] fix: moving let to const --- src/pg/Db.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pg/Db.js b/src/pg/Db.js index dc4537c..8ac6578 100644 --- a/src/pg/Db.js +++ b/src/pg/Db.js @@ -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