diff options
author | Andrey Andreev <narf@devilix.net> | 2019-02-14 13:57:54 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2019-02-14 13:57:54 +0100 |
commit | a0744323430f78e869e61d5412dff927fc512878 (patch) | |
tree | 169f6f12288cb07c675df99010191995dece3d22 /system/database/drivers/pdo | |
parent | 8b71bc904212d932faa25dc2be49c85c60e847e5 (diff) |
[ci skip] Polish changes from PR #5692, apply them to pdo/oci and add a changelog entry
Diffstat (limited to 'system/database/drivers/pdo')
-rw-r--r-- | system/database/drivers/pdo/subdrivers/pdo_oci_forge.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php b/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php index 0abda5930..b5d3eb143 100644 --- a/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php +++ b/system/database/drivers/pdo/subdrivers/pdo_oci_forge.php @@ -74,6 +74,13 @@ class CI_DB_pdo_oci_forge extends CI_DB_pdo_forge { */ protected $_unsigned = FALSE; + /** + * NULL value representation in CREATE/ALTER TABLE statements + * + * @var string + */ + protected $_null = 'NULL'; + // -------------------------------------------------------------------- /** |