SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row (Laravel 6)
问题 What am I doing wrong? Environment: Laravel 6, Homestead (Local), Windows 10 Create External Table (Migration): Schema::create('external', function (Blueprint $table) { $table->increments('id')->unsigned(); $table->foreign('id')->references('order_id')->on('order'); }); Create Order Table (Migration): Schema::create('order', function (Blueprint $table) { $table->increments('id'); $table->unsignedInteger('order_id')->index(); External.php (model): class External extends Model public function