銷售屬性

銷售相關表中的自定義屬性,例如:sales_flat_quote,sales_flat_order_item,sales_flat_order 等表

在你的安裝檔案 sql / some_setup / mysql-install-0.1.0.php 中:

<?php
 $installer = $this; 
 $installer->startSetup();
 $installer->addAttribute('quote', 'custom_field', array('type' => 'varchar')); 
 $installer->addAttribute('order', 'custom_field', array('type' => 'varchar'));
 $installer->endSetup();
 ?>

另一種方法是:

<?php
$installer = $this;
$installer->startSetup();
$installer->run("ALTER TABLE sales_flat_order_item ADD COLUMN 'custom_field' DECIMAL(12,4) NULL;");
$installer->endSetup();
?>

確保在此之後清除快取。