gpt4 book ai didi

yii2 - 在迁移中使用Schema Builder特性时指定unsigned属性?

转载 作者:行者123 更新时间:2023-12-04 13:48:52 24 4
gpt4 key购买 nike

我必须在yii2 migrations中将一列指定为unsigned。
手册中的示例迁移代码

public function up()
{
$this->createTable('news', [
'id' => $this->primaryKey(),
'title' => $this->string()->notNull()
]);
}

根据我所做的研究,似乎没有一种方法可以在模式生成器特征中添加未签名的功能。

但是,还有其他方法可以在仍使用schemaBuilderTrait样式方法的同时向列添加unsigned属性吗?

例如,上面的 $this->string()返回 yii\db\ColumnSchemaBuilder的实例,但是它甚至没有设置unsigned/signed的属性。

最佳答案

不幸的是,使用新的迁移语法无法编写某些内容。

在这种情况下,您可以像这样使用字符串连接:

'title' => $this->string()->notNull() . ' UNSIGNED',

或者,您可以使用旧语法(观察到向后兼容性):
use yii\db\Schema;

...

'title' => Schema::TYPE_STRING . ' NOT NULL UNSIGNED',

P.S. 您可以在此问题的官方框架存储库中发布问题。

更新:已经实现,请使用 ->unsigned()方法。请注意,您需要更新框架。感谢leitasat提供的信息。

关于yii2 - 在迁移中使用Schema Builder特性时指定unsigned属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32329766/

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