您好我是关于magneto-1.x的新手,我想创建升级脚本以在更改表时添加列我想检查表中是否存在列。 我试过这个但没有工作:
$this->startSetup();
$this->run("ALTER TABLE {$this-getTable('lr_extended_profile_data')} ADD COLUMN `total_logins` INT(11) NULL;");
$this->endSetup();
答案 0 :(得分:0)
请试试这个
$installer = $this;
$ installer-> startSetup();
$ installer->运行(”
ALTER TABLE {$this->getTable('email_leave_review')}
在used
之后添加列status
SMALLINT(6)NOT NULL默认值0,
“);