Exemplo n.º 1
0
 /**
  * add index
  *
  * @param string       $tableName  The table name
  * @param string|array $columnName The column name
  * @param array        $options    The options defintion of the index
  *
  * @return boolean
  */
 public function addIndex($tableName, $columnName, $options = array())
 {
     return $this->_adapter->addIndex($tableName, $columnName, $options);
 }