diff options
author | Andrey Andreev <narf@devilix.net> | 2017-01-06 10:35:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-06 10:35:55 +0100 |
commit | 1d60b20e852132ca8021e8b03e0b208398e8eb2d (patch) | |
tree | 93ee00bfbae24e224e371f7e7f899925a3c4376d | |
parent | 1e8236f24f0674da8eab227adc9481377978b86b (diff) | |
parent | 66b289839a5b2c2cb48526c78eeb92d2f26ade05 (diff) |
[ci skip] Merge pull request #4962 from ytetsuro/patch-2
oci8_forge add column bug fix
-rw-r--r-- | system/database/drivers/oci8/oci8_forge.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/database/drivers/oci8/oci8_forge.php b/system/database/drivers/oci8/oci8_forge.php index ac33cde0c..70fc5c4db 100644 --- a/system/database/drivers/oci8/oci8_forge.php +++ b/system/database/drivers/oci8/oci8_forge.php @@ -126,6 +126,7 @@ class CI_DB_oci8_forge extends CI_DB_forge { $sqls[] = $sql.' RENAME COLUMN '.$this->db->escape_identifiers($field[$i]['name']) .' '.$this->db->escape_identifiers($field[$i]['new_name']); } + $field[$i] = "\n\t".$field[$i]['_literal']; } } @@ -136,7 +137,7 @@ class CI_DB_oci8_forge extends CI_DB_forge { // RENAME COLUMN must be executed after MODIFY array_unshift($sqls, $sql); - return $sql; + return $sqls; } // -------------------------------------------------------------------- |