Ho inserito 2 attributi di categoria usando un modulo con il file mysql4-install-0.1.0.php
in una cartella 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();
Come posso eliminarli ora. Ho provato a inserire questo nel file sql, come suggerito in altre risposte:
$installer = $this;
$installer->startSetup();
$installer->removeAttribute('catalog_category', 'short_description');
$installer->removeAttribute('catalog_category', 'static_block');
$installer->endSetup();
Ma non succede nulla. Devo creare un altro modulo?