gpt4 book ai didi

laravel - Laravel 5.3 中错误字段没有默认值

转载 作者:行者123 更新时间:2023-12-02 16:37:35 25 4
gpt4 key购买 nike

我在 Laravel 5.2 中没有问题,但在 Laravel 5.3 中为用户模型创建迁移后,它显示以下错误:

SQLSTATE[HY000]:一般错误:1364 字段“family”没有默认值!!!

在模型用户中:

protected $fillable = [
'name', 'email', 'password', 'family', 'mobile', 'address', 'status'
];

迁移中:

Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('family');
$table->string('mobile')->unique();
$table->string('address');
$table->boolean('status');
$table->string('email')->unique();
$table->string('password');
$table->integer('reagent');
$table->rememberToken();
$table->timestamps();
});

我的问题出在哪里?

最佳答案

您应该将 ->nullable()->default('somethingHere') 添加到发送空值的字段。

$table->string('family')->nullable(); //this means that if you send empty value this field will become MySQL NULL

或设置默认值:

$table->string('family')->default('default value here');

比重新迁移:

php artisan migrate:rollback

php artisan migrate

关于laravel - Laravel 5.3 中错误字段没有默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41750167/

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