/**
  * Sets the default column value.
  *
  * @param mixed $default
  *
  * @return $this
  */
 public function setDefault($default)
 {
     $this->column->setDefault($default);
     return $this;
 }