Esempio n. 1
0
 /**
  * Removes(drops) an index
  *
  * @param string $tableName 
  * @param string|array $columnNames 
  * @param array $options
  *         - name: name of index (defaults to idx_[colum_names])
  * @return void
  */
 public function removeIndex($tableName, $columnNames, $options = array())
 {
     $this->_connection->removeIndex($tableName, $columnNames, $options);
 }