/**
  * Removes the given foreign key from the table.
  *
  * @param string $columns
  * @param null   $constraint
  *
  * @return mixed
  */
 public function dropForeignKey($columns, $constraint = null)
 {
     $this->table->dropForeignKey($columns, $constraint);
     return $this;
 }