gpt4 book ai didi

Yii2 迁移 - 在另一列之后添加列

转载 作者:行者123 更新时间:2023-12-05 01:02:27 29 4
gpt4 key购买 nike

我想通过在 Yii2 中的迁移添加一个新列,使用以下代码:

public function up()
{
$this->addColumn('news', 'priority', $this->integer());
}

public function down()
{
$this->dropColumn('news', 'priority');
}

它有效,但我希望它是名称之后的第二列。

有可能的?

最佳答案

好的,你可以试试这个:

$this->addColumn('news', 'priority', 'integer AFTER `name`');

关于Yii2 迁移 - 在另一列之后添加列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33904827/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com