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