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
));
属性を削除せずにこれを行うにはどうすればよいですか?