Added some nullable attributes to entitys.

This commit is contained in:
Jan Böhmer 2019-02-24 12:59:41 +01:00
parent ee29ad3e5a
commit f8bd1458d3

View file

@ -61,13 +61,13 @@ abstract class StructuralDBElement extends AttachmentContainingDBElement
/** /**
* @var string The comment info for this element * @var string The comment info for this element
* @ORM\Column(type="string") * @ORM\Column(type="string", nullable=true)
*/ */
protected $comment; protected $comment;
/** /**
* @var int * @var int
* @ORM\Column(type="integer") * @ORM\Column(type="integer", nullable=true)
*/ */
protected $parent_id; protected $parent_id;