示例#1
0
文件: Base.php 项目: azema/phigrate
 /**
  * remove index
  *
  * @param string       $tableName  The table name
  * @param string|array $columnName The column name
  * @param array        $options    The options definition of the index
  *
  * @return boolean
  */
 public function removeIndex($tableName, $columnName, $options = array())
 {
     return $this->_adapter->removeIndex($tableName, $columnName, $options);
 }