id(); $table->uuid('uuid')->unique(); $table->string('name'); $table->string('no_kp', 20)->unique(); $table->string('email', 255)->nullable(); $table->string('phone', 20)->nullable(); $table->string('agency', 255)->nullable(); $table->enum('participant_type', ['staff', 'external'])->default('external'); $table->timestamps(); $table->index('no_kp'); $table->index('email'); $table->index('uuid'); }); } public function down(): void { Schema::dropIfExists('participants'); } };