rename_table() public method

public rename_table ( string $name, string $new_name ) : boolean
$name string
$new_name string
return boolean
Esempio n. 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);
 }