为了账号安全,请及时绑定邮箱和手机立即绑定

通过 sqlite 插入数据时 Laravel 中的 PHP 错误

通过 sqlite 插入数据时 Laravel 中的 PHP 错误

PHP
元芳怎么了 2022-10-28 14:22:47
我正在研究 Laravel 并在 php artisan 中工作,但我不断收到此错误:用消息'SQLSTATE [23000]照亮/数据库/查询异常:完整性约束违规:19 NOT NULL约束失败:profiles.url(SQL:插入“profiles”(“title”,“description”,“user_id”,“updated_at” , "created_at") 值 (Cool, Desc, 1, 2020-03-12 02:03:16, 2020-03-12 02:03:16))'我正在将配置文件附加到用户,并且我的用户表包含以下内容:>> User::all()=> Illuminate\Database\Eloquent\Collection {#2992     all: [       App\User {#2993         id: "1",         name: "Test User1",         email: "test1@test.com",         username: "test1",         email_verified_at: null,         created_at: "2020-03-12 02:01:08",         updated_at: "2020-03-12 02:01:08",       },     ],    }这是我在 PHP Artisan 中输入的>>> $profile = new \App\Profile();=> App\Profile {#2987}>>> $profile->title = 'Cool Title';=> "Cool Title">>> $profile->description = 'Desc';=> "Desc">>> $profile->user_id = 1;=> 1>>> $profile->save();Profiles_table.phpclass CreateProfilesTable extends Migration{    /**     * Run the migrations.     *     * @return void     */    public function up()    {        Schema::create('profiles', function (Blueprint $table) {            $table->bigIncrements('id')->nullable;            $table->unsignedBigInteger('user_id')->nullable;            $table->string('title')->nullable;            $table->text('description')->nullable;            $table->string('url')->nullable;            $table->timestamps();            $table->index('user_id');        });    }    /**     * Reverse the migrations.     *     * @return void     */    public function down()    {        Schema::dropIfExists('profiles');    }}我找不到失败的原因。希望有人能找出是什么原因造成的。谢谢
查看完整描述

1 回答

?
慕的地10843

TA贡献1785条经验 获得超8个赞

我认为您的“个人资料”迁移有误。

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

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


查看完整回答
反对 回复 2022-10-28
  • 1 回答
  • 0 关注
  • 81 浏览

添加回答

举报

0/150
提交
取消
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号