Esempio n. 1
0
 /**
  * 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);
 }