diff options
author | ytetsuro <phper.0o0@gmail.com> | 2019-02-12 09:34:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-12 09:34:11 +0100 |
commit | b046d9751a1df09fe95e1773c770eb5e91e100d3 (patch) | |
tree | 1a21889e3c7b8dbaabe4560142ab624057b3bae1 /system/database | |
parent | 807f43b65d6b3fc35e8fed6fce1add36971f9f51 (diff) |
feat: add _null property
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/drivers/oci8/oci8_forge.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/system/database/drivers/oci8/oci8_forge.php b/system/database/drivers/oci8/oci8_forge.php index 20217f2b8..2f491d8f4 100644 --- a/system/database/drivers/oci8/oci8_forge.php +++ b/system/database/drivers/oci8/oci8_forge.php @@ -81,6 +81,13 @@ class CI_DB_oci8_forge extends CI_DB_forge { */ protected $_unsigned = FALSE; + /** + * NULL value representation in CREATE/ALTER TABLE statements + * + * @var string + */ + protected $_null = 'NULL'; + // -------------------------------------------------------------------- /** |