Example #1
0
 /**
  * Returns the initial value of the column.
  *
  * @return mixed
  */
 public function getInitialValue()
 {
     if ($this->hasDefaultValue) {
         return $this->defaultValue;
     }
     return $this->isNullable ? null : $this->dataType->getInitialValue();
 }