我想编写一个脚本来删除由扩展程序创建的属性。此属性在某种程度上比目录/产品属性更复杂,因为在创建时,它在数据库中添加了一列,无法通过属性管理器查看。
首先,我查看了该扩展安装脚本并看到了
$installer = new Mage_Sales_Model_Mysql4_Setup('sales_setup');
$installer->startSetup();
$installer->addAttribute('order', 'i4bulksend', array('type' => 'int', 'default' => '0', 'grid' => true));
$installer->endSetup();
因此,要删除该属性,我尝试了:
$installer = new Mage_Sales_Model_Mysql4_Setup('sales_setup');
$installer->startSetup();
$installer->removeAttribute('order', 'i4bulksend');
$installer->endSetup();
但没有运气,专栏'i4bulksend'仍在那里