如何给magento添加一个字段?
对于数据库中的表,如果添加一个字段,最简单的方式就是到数据库中通过代码给添加上一个
当然,你也可以使用magento自己带有的机制来完成这个工作
magento执行sql语句的代码如下:
$installer = $this;
$installer->startSetup();
$installer->getConnection()->addColumn($this->getTable('cataloginventory_stock_item'), 'shelf', "VARCHAR( 255 ) NOT NULL COMMENT 'Netz98_Picklist'");
$installer->endSetup();
将它写在模块的sql里面,然后执行就可以了,刷新缓存,重新编译,OK
执行完毕,到数据库里面看看是不是多了一个字段!