id(); $table->bigInteger('country_id')->unsigned()->nullable()->index(); $table->foreign('country_id')->references('id')->on('countries')->onDelete('cascade'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('divisions'); } };