id(); $table->foreignId('country_id')->unsigned(); $table->foreignId('state_id')->unsigned(); $table->string('name'); $table->text('postcode'); $table->integer('status')->default(ApprovalStatus::APPROVED); $table->softDeletes(); $table->timestamps(); $table->foreign('country_id')->references('id')->on('countries'); $table->foreign('state_id')->references('id')->on('states'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('districts'); } }