id(); $table->timestamp('created_at')->default(DB::raw('CURRENT_TIMESTAMP')); $table->timestamp('updated_at')->default(DB::raw('CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP')); $table->integer('regency_code'); $table->integer('district_code'); $table->string('district_name'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('districts'); } };