示例#1
0
 /**
  * Rename a table
  *
  * @param string $name     the name of the table
  * @param string $new_name the new name of the table
  *
  * @return boolean
  */
 public function rename_table($name, $new_name)
 {
     return $this->_adapter->rename_table($name, $new_name);
 }