Tôi đã chèn 2 thuộc tính danh mục bằng cách sử dụng một mô-đun với tệp mysql4-install-0.1.0.php
trong thư mục sql:
$installer = $this;
$installer->startSetup();
$installer->addAttribute('catalog_category', 'short_description', array(
'type' => 'text',
'label' => 'Short Description',
'input' => 'textarea',
'group' => 'General',
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
'visible' => true,
'required' => false
));
$installer->addAttribute('catalog_category', 'static_block', array(
'type' => 'text',
'label' => 'Brand',
'input' => 'text',
'group' => 'General',
'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_STORE,
'visible' => true,
'required' => false
));
$this->endSetup();
Làm thế nào tôi có thể xóa chúng bây giờ. Tôi đã thử chèn cái này vào tệp sql, như được đề xuất trong các câu trả lời khác:
$installer = $this;
$installer->startSetup();
$installer->removeAttribute('catalog_category', 'short_description');
$installer->removeAttribute('catalog_category', 'static_block');
$installer->endSetup();
Nhưng không có gì xảy ra. Tôi có nên tạo một mô-đun khác?