在magento 1.x中需要升级脚本的帮助

时间:2016-08-25 06:33:33

标签: magento-1.9

您好我是关于magneto-1.x的新手,我想创建升级脚本以在更改表时添加列我想检查表中是否存在列。 我试过这个但没有工作:

$this->startSetup();
$this->run("ALTER TABLE {$this-getTable('lr_extended_profile_data')} ADD COLUMN `total_logins`  INT(11) NULL;");
$this->endSetup();

1 个答案:

答案 0 :(得分:0)

请试试这个

$installer = $this;

$ installer-> startSetup();

$ installer->运行(”     ALTER TABLE {$this->getTable('email_leave_review')}     在used之后添加列status SMALLINT(6)NOT NULL默认值0, “);