remove_column() public méthode

public remove_column ( string $table_name, string $column_name )
$table_name string
$column_name string
 /**
  * Remove a column
  *
  * @param string $table_name  the name of the table
  * @param string $column_name the column name
  *
  * @return boolean
  */
 public function remove_column($table_name, $column_name)
 {
     return $this->_adapter->remove_column($table_name, $column_name);
 }