diff options
author | Andrey Andreev <narf@devilix.net> | 2014-11-03 21:45:28 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-11-03 21:45:28 +0100 |
commit | 5289f27c07bfb1d961317de351c4819f25dd5f2e (patch) | |
tree | da7f7e1a9df24b917e5447d443da5cd9cef1443a /system/database/drivers/oci8 | |
parent | 288e95dbdcd1c4e4144861919090075b4661f330 (diff) |
Polish changes following #3305
Also add support for field comments in PostgreSQL & Oracle ... only via alter_table() for now :/
Diffstat (limited to 'system/database/drivers/oci8')
-rw-r--r-- | system/database/drivers/oci8/oci8_forge.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/system/database/drivers/oci8/oci8_forge.php b/system/database/drivers/oci8/oci8_forge.php index 433692ddb..3576a9c43 100644 --- a/system/database/drivers/oci8/oci8_forge.php +++ b/system/database/drivers/oci8/oci8_forge.php @@ -106,6 +106,14 @@ class CI_DB_oci8_forge extends CI_DB_forge { else { $field[$i]['_literal'] = "\n\t".$this->_process_column($field[$i]); + + if ( ! empty($field[$i]['comment'])) + { + $sqls[] = 'COMMENT ON COLUMN ' + .$this->db->escape_identifiers($table).'.'.$this->db->escape_identifiers($field[$i]['name']) + .' IS '.$field[$i]['comment']; + } + if ($alter_type === 'MODIFY' && ! empty($field[$i]['new_name'])) { $sqls[] = $sql.' RENAME COLUMN '.$this->db->escape_identifiers($field[$i]['name']) |