我想使用Symfony2 Entity添加表的列注释或描述,
我也试过以下链接,但无法成功: - How to add column descriptions (comments) in Doctrine2
答案 0 :(得分:0)
试试这个
/**
* @var string $description
*
* @ORM\Column(name="description", type="text", nullable=true)
*/
protected $description = "";