35

我想在表格的第七位添加一列,我正在使用

$this->addColumn('table_name','column_name','type'); 

在末尾添加列。有什么办法可以提到添加列的地方吗?或任何后列关键字添加我的新列之后,例如,密码列。我从Yii Doc中了解了迁移

4

2 回答 2

46

这应该工作!

$this->addColumn('table_name', 'column_name', 'type AFTER column6'); 

例子:

$this->addColumn('tbl_posts', 'email', 'VARCHAR(150) AFTER `name` ');
$this->addColumn('tbl_posts', 'phone', 'string AFTER `email` ');
于 2012-09-20T05:52:34.557 回答
41
$this->addColumn('{{%user}}', 'username', 
            $this->string()->notNull()->unique()->after('id')
            );
于 2016-06-20T01:42:46.630 回答