如何在doctrine 1.2模式中指定float格式?

时间:2011-07-13 06:07:44

标签: php floating-point doctrine schema

当我在doctrine 1.2模式文件some_float_field: { type: float }中使用这样的表示法时,doctrine为它生成SQL some_float_field FLOAT(18, 2)

但我需要小数点后的更多数字,例如FLOAT(18,10)。有没有办法在模式文件或doctrine配置中指定浮点格式?

您是否可能知道doctrine包中的哪个文件从模式文件生成sql?

1 个答案:

答案 0 :(得分:2)

不确定浮动,但对于十进制它是

type: decimal(18)
scale: 10

浮动应该是类似的东西,我想