diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-04-07 16:01:01 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-04-07 16:01:01 +0200 |
commit | 2385d30422b865052bbc6f333e6a189f46215a61 (patch) | |
tree | 396a5623d07b711ab1da0f92a61d1276f80d9fce /system/database/DB_forge.php | |
parent | 16629b1cef61db05646839d6789d98ddc5aaf16b (diff) |
Added rename_table() into DBForge.
Diffstat (limited to 'system/database/DB_forge.php')
-rw-r--r-- | system/database/DB_forge.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/system/database/DB_forge.php b/system/database/DB_forge.php index cd468bc6a..5f25ebedc 100644 --- a/system/database/DB_forge.php +++ b/system/database/DB_forge.php @@ -209,6 +209,27 @@ class CI_DB_forge { // --------------------------------------------------------------------
/**
+ * Rename Table
+ *
+ * @access public
+ * @param string the old table name
+ * @param string the new table name
+ * @return bool
+ */
+ function rename_table($table_name, $new_table_name)
+ {
+ if ($table_name == '' OR $new_table_name == '')
+ {
+ show_error('A table name is required for that operation.');
+ }
+
+ $sql = $this->_rename_table($table_name, $new_table_name);
+ return $this->db->query($sql);
+ }
+
+ // --------------------------------------------------------------------
+
+ /**
* Column Add
*
* @access public
|