对于此迁移文件为payments
表我想在其他迁移文件中添加其他列并设置外键,在终端运行命令后出现此错误:
SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`laravel`.`#sql-1f1_42b`, CONSTRAINT `payments_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DE
LETE CASCADE) (SQL: alter table `payments` add constraint `payments_product_id_foreign` foreign key (`product_id`) references `
products` (`id`) on delete cascade)
我的payments
迁移文件:
public function up()
{
Schema::create('payments', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->unsigned();
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
$table->string('resnumber');
$table->string('price');
$table->boolean('payment')->default(false);
$table->timestamps();
});
}
我希望在此文件中添加product_id
列:
class SetProductIdForeignToPayment extends Migration
{
public function up()
{
Schema::table('payments', function (Blueprint $table) {
$table->integer('product_id')->unsigned()->index()->default(0);
$table->foreign('product_id')->references('id')->on('products')->onDelete('cascade');
});
}
public function down()
{
}
}
我该如何解决这个问题?
答案 0 :(得分:1)
将@Override
public Map<String, String> getHeaders() throws AuthFailureError {
Map<String, String> map = new HashMap<>();
map.put("Cookie", "__test=YOUR COOKIE HERE; expires=Friday, January 1, 2038 at 5:25:55 AM; path=/");
return map;
}
更改为->default(0)
。