9

在编写 codeigniter 迁移时,我不确定如何添加十进制类型的字段。具体来说,您如何定义允许的元素大小?例如,我将如何定义要传递的数组以dbforge->add_field()创建如下所示的字段:

price decimal(10,2) not null default 0.00
4

3 回答 3

25
'price' => array(
    'type' => 'DECIMAL',
    'constraint' => '10,2',
),
于 2012-07-18T19:07:43.380 回答
5
'price' => array(
'type' => 'DECIMAL',
'constraint' => '10,2',
'null' => FALSE,
'default' => 0.00
),
于 2015-09-18T23:11:14.800 回答
0
'price' => array('type' => 'DECIMAL(10,2)')
于 2015-08-26T18:53:18.043 回答