示例#1
0
 /**
  * Remove an index
  *
  * @param string $table_name the name of the table
  * @param string $column_name the column name
  * @param array|string $options
  *
  * @return boolean
  */
 public function remove_index($table_name, $column_name, $options = array())
 {
     return $this->_adapter->remove_index($table_name, $column_name, $options);
 }