Skip to content

Latest commit

History

History
26 lines (19 loc) 路 1.04 KB

null_values.md

File metadata and controls

26 lines (19 loc) 路 1.04 KB

NULL values

NULL values are also supported by ENUM field. You can set nullable parameter of column to true or false depends on if you want or not to allow NULL values:

/** @ORM\Column(name="position", type="BasketballPositionType", nullable=true) */
private $position;

// or

/** @ORM\Column(name="position", type="BasketballPositionType", nullable=false) */
private $position;

More features