Laravel - 外键约束不正确

时间:2017-05-06 12:11:16

标签: php html mysql laravel

我正在努力创建表格'团队'和#'比赛'在laravel但是当我运行migrate命令时,我得到以下内容:errno:150"外键约束形成错误"

Schema::create('competitions', function (Blueprint $table) {
                    $table->increments('id');
                    $table->string('name')->unique();
                    $table->string('team_name');
                    $table->foreign('team_name')->references('name')->on('teams')->onDelete('cascade');
                    $table->timestamps();
        });

Schema::create('teams', function (Blueprint $table) {
                    $table->increments('id');
                    $table->string('name')->unique();
                    $table->string('place');
                    $table->string('competition')->nullable();;
                    $table->foreign('competition')->references('name')->on('competitions')->onDelete('set null');
                    $table->timestamps();
});

2 个答案:

答案 0 :(得分:0)

我认为这是因为你的->onDelete('set null')条款。当您删除团队时,这将尝试将竞争表上的名称字段设置为null。你可能只是删除它。

答案 1 :(得分:0)

您必须为主键外键

使用相同的属性

例如两者都有 - > nullable()与否。

另外,请确保两个表及其列的排序规则相同。