foreign('module_id', 'fk_mm_mod')->references('id')->on('ab_module')->onUpdate('NO ACTION')->onDelete('NO ACTION'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('ab_module_method', function(Blueprint $table) { $table->dropForeign('fk_mm_mod'); }); } }