/** * Checks to see if an index exists. * * @param string $tableName Table Name * @param mixed $columns Column(s) * @return bool */ public function hasIndex($tableName, $columns) { return $this->adapter->hasIndex($tableName, $columns); }