id(); $table->string('province_code')->index(); $table->string('city_code')->index(); $table->string('district_code')->index(); $table->string('code'); $table->string('name'); $table->string('alt_name')->nullable(); $table->string('postal_code', 5)->nullable(); $table->timestamps(); $table->softDeletes(); $table->uuid('created_by')->nullable(); $table->uuid('updated_by')->nullable(); $table->uuid('deleted_by')->nullable(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('villages'); } };