rename_table() 공개 메소드

public rename_table ( string $name, string $new_name ) : boolean
$name string
$new_name string
리턴 boolean
예제 #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);
 }