foreign('invoice_id', 'fk_pi_inv')->references('id')->on('ab_invoice')->onUpdate('NO ACTION')->onDelete('NO ACTION'); $table->foreign('payment_id', 'fk_pi_pay')->references('id')->on('ab_payment')->onUpdate('NO ACTION')->onDelete('NO ACTION'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('ab_payment_item', function(Blueprint $table) { $table->dropForeign('fk_pi_inv'); $table->dropForeign('fk_pi_pay'); }); } }