在编写 codeigniter 迁移时,我不确定如何添加十进制类型的字段。具体来说,您如何定义允许的元素大小?例如,我将如何定义要传递的数组以dbforge->add_field()
创建如下所示的字段:
price decimal(10,2) not null default 0.00
在编写 codeigniter 迁移时,我不确定如何添加十进制类型的字段。具体来说,您如何定义允许的元素大小?例如,我将如何定义要传递的数组以dbforge->add_field()
创建如下所示的字段:
price decimal(10,2) not null default 0.00
'price' => array(
'type' => 'DECIMAL',
'constraint' => '10,2',
),
'price' => array(
'type' => 'DECIMAL',
'constraint' => '10,2',
'null' => FALSE,
'default' => 0.00
),
'price' => array('type' => 'DECIMAL(10,2)')