/**
  * Sets whether the column allows nulls.
  *
  * @param boolean $null
  *
  * @return $this
  */
 public function setNull($null)
 {
     $this->column->setNull($null);
     return $this;
 }