gpt4 book ai didi

mysql - 这个 SQL 错误是什么意思?

转载 作者:行者123 更新时间:2023-11-29 11:49:36 26 4
gpt4 key购买 nike

在 Laravel 上运行迁移时出现以下错误。当到达更新用户表的迁移部分时,似乎会出现错误。

SQLSTATE[23000]: Integrity constraint violation: 1452
Cannot add or update a child row: a foreign key constraint fails
(`priatek`.`#sql-52e_a`, CONSTRAINT user_usertypeid_foreign` FOREIGN KEY
(userTypeId`) REFERENCES `UserType` (`userTypeId`))
(SQL: alter table `User` add constraint user_usertypeid_foreign foreign key
(`userTypeId`) references UserType` (`userTypeId`))

迁移

public function up()
{
Schema::create('UserType', function (Blueprint $table) {
$table->increments('userTypeId');
$table->string('name');
$table->string('description')->nullable();
$table->boolean('viewUser');
$table->boolean('viewSponsor');
$table->boolean('viewQuestion');
$table->boolean('createUser');
$table->boolean('createSponsor');
$table->boolean('createQuestion');
});

UserType::create([
'name' => 'Executive',
'viewUser' => 0,
'viewSponsor' => 1,
'viewQuestion' => 0,
'createUser' => 0,
'createSponsor' => 0,
'createQuestion' => 0,
]);

//more UserType creations...

Schema::table('User', function ($table) {
$table->integer('userTypeId')->unsigned();
$table->integer('operatorId')->unsigned();
$table->integer('sponsorId')->unsigned()->nullable();

$table->foreign('userTypeId')->references('userTypeId')->on('UserType');
});

// more unrelated stuff...
}

最佳答案

问题是当您将外键添加到表中时,所有用户都必须已经拥有有效的 userTypeId。但因为您刚刚创建新专栏,所以他们不会有这个。

在创建外键之前,您必须确保所有用户都具有有效的用户类型(需要创建用户类型并为每个用户正确设置 userTypeId)。

因此,您需要做的是将附加列添加到 User 表中,然后运行一些更新查询以确保所有用户都设置了 userTypeId,然后添加更新完成后的外键。

关于mysql - 这个 SQL 错误是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34340573/

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