From a592b555eb75a92e65b6ca7822c953696c8e7939 Mon Sep 17 00:00:00 2001 From: Oliver Henrichs Date: Wed, 6 Mar 2024 16:53:31 +0100 Subject: [PATCH] Fixes _setNullableState not respecting schema #6024 --- lib/schema/tablecompiler.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/schema/tablecompiler.js b/lib/schema/tablecompiler.js index 68d2d4958e..b06633a297 100644 --- a/lib/schema/tablecompiler.js +++ b/lib/schema/tablecompiler.js @@ -317,6 +317,7 @@ class TableCompiler { output: () => { return this.client .queryBuilder() + .withSchema(this.schemaNameRaw) .from(this.tableNameRaw) .columnInfo(column) .then((columnInfo) => {