diff options
author | Zachary Flower <zach@ninjaninja.net> | 2014-11-03 05:51:19 +0100 |
---|---|---|
committer | Zachary Flower <zach@ninjaninja.net> | 2014-11-03 05:51:19 +0100 |
commit | 9b512288772f6e0f97fc4274f304132e8f8f5db2 (patch) | |
tree | cef2efdd29ea08f2b2a77aef0230d95d5e6b5a45 /system/database/drivers/odbc | |
parent | 24fbc61e4a46c1e9f185c36629960dce0bad71e2 (diff) |
Disable database COMMENT field by default in all other DB Forge drivers
Signed-off-by: Zachary Flower <zach@ninjaninja.net>
Diffstat (limited to 'system/database/drivers/odbc')
-rw-r--r-- | system/database/drivers/odbc/odbc_forge.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/system/database/drivers/odbc/odbc_forge.php b/system/database/drivers/odbc/odbc_forge.php index d78bc369a..00cb00bef 100644 --- a/system/database/drivers/odbc/odbc_forge.php +++ b/system/database/drivers/odbc/odbc_forge.php @@ -69,6 +69,13 @@ class CI_DB_odbc_forge extends CI_DB_forge { */ protected $_unsigned = FALSE; + /** + * COMMENT value representation in CREATE/ALTER TABLE statements + * + * @var string + */ + protected $_comment = FALSE; + // -------------------------------------------------------------------- /** |