Esempio n. 1
0
 /**
  * Rename a column
  *
  * @param string $tbl_name        the name of the table
  * @param string $column_name     the column name
  * @param string $new_column_name the new column name
  *
  * @return boolean
  */
 public function rename_column($tbl_name, $column_name, $new_column_name)
 {
     return $this->_adapter->rename_column($tbl_name, $column_name, $new_column_name);
 }