maker-bundle
maker-bundle copied to clipboard
The field should not have a default null value if it is not intended to be null in the database.
$defaultValue = $nullable ? null : self::DEFAULT_VALUE_NONE;
$propertyType = $nullable ? '?'.$typeHint : $typeHint;
should be enough to get it done.