magento
カスタム属性
サーチ…
前書き
販売、カテゴリなどのカスタムアトリビュート
販売属性
sales_flat_quote、sales_flat_order_item、sales_flat_orderなどのsales関連テーブルのカスタム属性
あなたのインストールファイルの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();
?>
この後に必ずキャッシュをクリアしてください。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow