gpt4 book ai didi

laravel - Laravel 中如何将默认值设置为 null

转载 作者:行者123 更新时间:2023-12-02 20:42:23 25 4
gpt4 key购买 nike

我正在 Laravel 中制作注册表单,首先我创建迁移

<?php

use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('first_name');
$table->string('last_name');
$table->string('email')->unique();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('users');
}
}

我想首先注册没有名字和姓氏的姓名、电子邮件和密码,但是当我单击注册时,它给我错误,名字和姓氏没有默认值..那么如何使默认值为空,因为我想要稍后更新该列。

最佳答案

$table->string('first_name')->default('DEFAULT');

编辑:如果默认值应该为 null,请将其改为可为 null。

$table->string('first_name')->nullable();

关于laravel - Laravel 中如何将默认值设置为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40774791/

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