Disable database COMMENT field by default in all other DB Forge drivers
Signed-off-by: Zachary Flower <zach@ninjaninja.net>
diff --git a/system/database/drivers/oci8/oci8_forge.php b/system/database/drivers/oci8/oci8_forge.php
index 433692d..c1c5f11 100644
--- a/system/database/drivers/oci8/oci8_forge.php
+++ b/system/database/drivers/oci8/oci8_forge.php
@@ -74,6 +74,13 @@
*/
protected $_unsigned = FALSE;
+ /**
+ * COMMENT value representation in CREATE/ALTER TABLE statements
+ *
+ * @var string
+ */
+ protected $_comment = FALSE;
+
// --------------------------------------------------------------------
/**