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