/**
  * Sets the name of the column to add this column after.
  *
  * @param string $after After
  *
  * @return $this
  */
 public function setAfter($after)
 {
     $this->column->setAfter($after);
     return $this;
 }