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