diff --git a/src/Schema/Column.php b/src/Schema/Column.php index 03fd686f439..e1580178656 100644 --- a/src/Schema/Column.php +++ b/src/Schema/Column.php @@ -36,7 +36,7 @@ class Column extends AbstractAsset /** @var bool */ protected $_notnull = true; - /** @var string|null */ + /** @var mixed */ protected $_default; /** @var bool */ @@ -278,7 +278,7 @@ public function getNotnull() return $this->_notnull; } - /** @return string|null */ + /** @return mixed */ public function getDefault() { return $this->_default;