id(); $table->string('district_name')->nullable(); $table->bigInteger('country_id')->unsigned()->index()->nullable(); $table->foreign('country_id')->references('id')->on('countries')->onUpdate('cascade')->onDelete('cascade'); $table->bigInteger('state_id')->unsigned()->index()->nullable(); $table->foreign('state_id')->references('id')->on('states')->onUpdate('cascade')->onDelete('cascade'); $table->enum('status',['Active','Inactive'])->default('Active'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('districts'); } }