Я вставил 2 атрибута категории, используя модуль с файлом mysql4-install-0.1.0.php
в папке 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();
Как я могу удалить их сейчас. Я попытался вставить это в файл sql, как предлагалось в других ответах:
$installer = $this;
$installer->startSetup();
$installer->removeAttribute('catalog_category', 'short_description');
$installer->removeAttribute('catalog_category', 'static_block');
$installer->endSetup();
Но ничего не происходит. Должен ли я создать еще один модуль?
attributes
sql
category-attribute
Клаудиу Крянгэ
источник
источник