/**
  * Sets the column scale for decimal.
  *
  * @param integer $scale
  *
  * @return $this
  */
 public function setScale($scale)
 {
     $this->column->setScale($scale);
     return $this;
 }