/**
  * Removes the given index from a table.
  *
  * @param string $columns
  * @param array  $options
  *
  * @return $this
  */
 public function removeIndex($columns, $options = [])
 {
     $this->table->removeIndex($columns, $options);
     return $this;
 }