I have a Symfony2 form with a variety of fields, including one optional text field called recap.
recap
This recap field saves perfectly when there\'s
I also came across this problem. And an elegant solution was suggested to me was: to make this definition @ORM\Column(type="string", length=50, nullable=true)
@ORM\Column(type="string", length=50, nullable=true)