如何在原则 1.2 模式中指定浮点格式?

发布于 2024-11-19 22:04:07 字数 250 浏览 1 评论 0原文

当我在原则 1.2 模式文件 some_float_field: { type: float } 中使用这种表示法时,原则会为其生成 SQL some_float_field FLOAT(18, 2)

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

你可能知道doctrine包中的哪个文件从模式文件生成sql吗?

When I use such notation in doctrine 1.2 schema file some_float_field: { type: float } doctrine generates SQL for it some_float_field FLOAT(18, 2)

But I need more digits after decimal point, for example FLOAT(18,10). Is there a way to specify float format in schema file or doctrine config ?

Do you possibly know what file in doctrine package generates sql from schema file ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枕头说它不想醒 2024-11-26 22:04:07

不确定浮点数,但对于十进制,它的

type: decimal(18)
scale: 10

浮点数应该是类似的东西我猜

not sure about float, but for decimal it's

type: decimal(18)
scale: 10

float should be something similar I guess

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文