From bdbc8e4b71816da0152561a2b7b356bab6914304 Mon Sep 17 00:00:00 2001 From: kenjis Date: Sun, 21 Jan 2024 18:27:09 +0900 Subject: [PATCH] fix: OCI8 Forge always sets NOT NULL when BOOLEAN is specified --- system/Database/OCI8/Forge.php | 1 - 1 file changed, 1 deletion(-) diff --git a/system/Database/OCI8/Forge.php b/system/Database/OCI8/Forge.php index 232bdcf2721e..2735b886cb86 100644 --- a/system/Database/OCI8/Forge.php +++ b/system/Database/OCI8/Forge.php @@ -254,7 +254,6 @@ protected function _attributeType(array &$attributes) $attributes['TYPE'] = 'NUMBER'; $attributes['CONSTRAINT'] = 1; $attributes['UNSIGNED'] = true; - $attributes['NULL'] = false; return;