Ich habe 2 Kategorieattribute mithilfe eines Moduls mit der Datei mysql4-install-0.1.0.php
in einem SQL-Ordner eingefügt:
$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();
Wie kann ich sie jetzt löschen? Ich habe versucht, dies in die SQL-Datei einzufügen, wie in anderen Antworten vorgeschlagen:
$installer = $this;
$installer->startSetup();
$installer->removeAttribute('catalog_category', 'short_description');
$installer->removeAttribute('catalog_category', 'static_block');
$installer->endSetup();
Aber nichts passiert. Soll ich ein anderes Modul erstellen?
quelle