diff options
author | ytetsuro <phper.0o0@gmail.com> | 2017-06-13 10:57:09 +0200 |
---|---|---|
committer | ytetsuro <phper.0o0@gmail.com> | 2017-06-13 10:57:09 +0200 |
commit | 99b4d649a1d1d196d779277091c808f2bb77280f (patch) | |
tree | e7de801c06293305fb4c4106f111735a774fe556 /system/database/drivers | |
parent | 735e2165d1ad16454ae1b2222a66345a74b82d14 (diff) |
add rename to keyword
Diffstat (limited to 'system/database/drivers')
-rw-r--r-- | system/database/drivers/oci8/oci8_forge.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/oci8/oci8_forge.php b/system/database/drivers/oci8/oci8_forge.php index 867a94341..724a76df4 100644 --- a/system/database/drivers/oci8/oci8_forge.php +++ b/system/database/drivers/oci8/oci8_forge.php @@ -124,7 +124,7 @@ class CI_DB_oci8_forge extends CI_DB_forge { if ($alter_type === 'MODIFY' && ! empty($field[$i]['new_name'])) { $sqls[] = $sql.' RENAME COLUMN '.$this->db->escape_identifiers($field[$i]['name']) - .' '.$this->db->escape_identifiers($field[$i]['new_name']); + .' TO '.$this->db->escape_identifiers($field[$i]['new_name']); } $field[$i] = "\n\t".$field[$i]['_literal']; |