/**
  * Removes the given index identified by its name from a table.
  *
  * @param string $name
  *
  * @return $this
  */
 public function removeIndexByName($name)
 {
     $this->table->removeIndexByName($name);
     return $this;
 }