symfony2实体列注释或描述

时间:2014-07-18 10:24:51

标签: symfony doctrine-orm

我想使用Symfony2 Entity添加表的列注释或描述,

我也试过以下链接,但无法成功: - How to add column descriptions (comments) in Doctrine2

1 个答案:

答案 0 :(得分:0)

试试这个

/**
 * @var string $description
 *
 * @ORM\Column(name="description", type="text", nullable=true)
 */
protected $description = "";