gpt4 book ai didi

php - Laravel - 未签名且可为空

转载 作者:可可西里 更新时间:2023-11-01 00:04:51 24 4
gpt4 key购买 nike

我正在使用 Laravel 5.3,我想在表迁移中定义一个字段为 nullable 以及 unsigned。由于两者都是索引修饰符,我可以将它们串联使用吗?喜欢:

$table->integer('some_field')->unsigned()->nullable();

如果 laravel 文档或其他地方有此类修改,也请提供一些引用。

请注意,我想将 up() 函数中的字段定义为无符号且可为空。我不想要具有 down() 功能的解决方案,例如:

public function up()
{
Schema::create('ex', function (Blueprint $table) {
$table->integer('some_field')->unsigned();
});
}
public function down()
{
DB::statement('ALTER TABLE ex MODIFY `some_field` integer NOT NULL;');
}

提前致谢!

最佳答案

你可以做到

   Schema::create('ex', function (Blueprint $table) {
$table->integer('some_field')->unsigned()->nullable();
});

关于php - Laravel - 未签名且可为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41592288/

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