Symfony2生成带有选项的实体字段

时间:2014-04-25 09:21:57

标签: symfony orm doctrine-orm

我使用console命令生成新实体:

  

$ php app / console doctrine:generate:entity

如何使用此控制台命令为十进制类型字段(以及其他字段类型的其他选项)设置选项 scale precision

1 个答案:

答案 0 :(得分:2)

您无法通过控制台设置精度和比例。在ORM YAML文件中声明字段时,必须提及这些属性,作为注释等。

要了解如何在注释中设置精度和比例,这里是链接

http://docs.doctrine-project.org/en/2.0.x/reference/annotations-reference.html#column

您可以在此处查看所有可用的doctrine 2数据类型,

http://doctrine-dbal.readthedocs.org/en/latest/reference/types.html

对于十进制精度和比例,你可以在这里看到它,

http://doctrine-dbal.readthedocs.org/en/latest/reference/types.html#id89

希望这有帮助, 干杯!