예제 #1
0
파일: Column.php 프로젝트: binsoul/db
 /**
  * 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();
 }