foreign('currency_id')->references('id')->on('currencies')->onUpdate('RESTRICT')->onDelete('RESTRICT'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('countries', function(Blueprint $table) { $table->dropForeign('countries_currency_id_foreign'); }); } }