/**
  * Checks to see if an index exists.
  *
  * @param string $columns
  * @param array  $options
  *
  * @return bool
  */
 public function hasIndex($columns, $options = [])
 {
     return $this->table->hasIndex($columns, $options);
 }