如何为 Cakephp2.x 中的灯具定义十进制数据类型?

How to define decimal data type for fixtures in Cakephp2.x?

我正在为 cakephp2.x 中的测试创建一个夹具。我想将字段类型定义为小数,这很简单。但是,我想用DECIMAL(6,4)专门定义它,但不知道如何设置数字。

我在菜谱里也没找到:https://book.cakephp.org/2/en/development/testing.html

如有任何帮助,我们将不胜感激!

您可以在列定义 length 选项中指定两者,如下所示:

public $fields = array(
    'column_name' => array(
        'type' => 'decimal',
        'length' => '6,4',
        'null' => false,
    ),
    // ...
);