我有一个 magento 客户地址属性,它不是必需的。我想将其更改为所需的。
这是我用来添加属性的 mysql4-install 文件。
$this->addAttribute('customer_address', 'govt_id', array(
'type' => 'varchar',
'input' => 'text',
'label' => 'Govt ID NO#',
'global' => 1,
'visible' => 1,
'required' => 0,
'user_defined' => 1,
'visible_on_front' => 1
));
我怎样才能在不删除属性的情况下做到这一点?