簡體   English   中英

無法創建表`clothing`.`clothes`(錯誤號:150“外鍵約束形成不正確”)”)Laravel 7

[英]Can't create table `clothing`.`clothes` (errno: 150 "Foreign key constraint is incorrectly formed")") Laravel 7

無法創建表clothing clothes (errno: 150 "外鍵約束形成不正確")") Laravel 7

不能斷言外鍵。

樂隊

   Schema::create('bands', function (Blueprint $table) {
        $table->id();
        $table->string('name');

        $table->string('band_origin');
        $table->text('band_details');
        $table->timestamps();
        $table->softDeletes();
    });

類別

Schema::create('category', function (Blueprint $table) {
            $table->id();
            $table->string('category_name');
            $table->string('category_description');
            $table->timestamps();
            $table->softDeletes(); 


**gender**

Schema::create('gender', function (Blueprint $table) {
            $table->id();
            $table->string('name');
            $table->string('description');
            $table->timestamps();
            $table->softDeletes();


**colors**

Schema::create('colors', function (Blueprint $table) {
            $table->id('idColor');
            $table->String('color_name');
            $table->String('color_description')->nullable();
            $table->timestamps();
            $table->softDeletes();
        });



**ERROR HERE TABLE CLOTHES WHERE I WANT to ACQUIRE those field in this table**


   Schema::create('clothes', function (Blueprint $table) {
            $table->id('clothesID'); //PK
            $table->bigInteger('bandID_fk')->unsigned();
            $table->bigInteger('categoryID_fk')->unsigned();
            $table->bigInteger('genderID_fk')->unsigned();
            $table->bigInteger('colorID_fk')->unsigned();
            $table->tinyInteger('onStock');
            $table->integer('price');
            $table->integer('discount')->default(0);
            $table->string('description')->nullable();
            $table->integer('shoeSize')->nullable();
            $table->integer('stock');
            $table->string('photo1');
            $table->string('photo2')->nullable();
            $table->string('photo3')->nullable();
            $table->timestamps();
            $table->softDeletes();

//            ERROR 
            $table->foreign('bandID_fk')->references('id')->on('bands');
            $table->foreign('categoryID_fk')->references('id')->on('category');
            $table->foreign('genderID_fk')->references('id')->on('gender');
            $table->foreign('colorID_fk')->references('idColor')->on('users');
        });
    }

這是正確答案 謝謝!

Schema::create('clothes', function
    (Blueprint $table) {
        $table->id('clothesID'); //PK
        $table->bigInteger('bandID_fk')->unsigned();
        $table->bigInteger('categoryID_fk')->unsigned();
        $table->bigInteger('genderID_fk')->unsigned();
        $table->bigInteger('colorID_fk')->unsigned();
        $table->tinyInteger('onStock');
        $table->integer('price');
        $table->integer('discount')->default(0);
        $table->string('description')->nullable();
        $table->integer('shoeSize')->nullable();
        $table->integer('stock');
        $table->string('photo1');
        $table->string('photo2')->nullable();
        $table->string('photo3')->nullable();
        $table->timestamps();
        $table->softDeletes();


        $table->foreign('bandID_fk')->references('id')->on('bands');
        $table->foreign('categoryID_fk')->references('id')->on('category');
        $table->foreign('genderID_fk')->references('id')->on('gender');
        $table->foreign('colorID_fk')->references('idColor')->on('colors');

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM