id(); $table->string('no_anggota')->nullable()->index(); $table->string('no_pekerja')->nullable()->unique(); $table->string('no_kp')->nullable()->unique(); $table->string('nama')->index(); $table->string('jabatan')->nullable(); $table->string('bahagian')->nullable(); $table->string('telefon')->nullable(); $table->boolean('status_aktif')->default(true); $table->timestamps(); $table->index(['jabatan', 'bahagian']); }); } public function down(): void { Schema::dropIfExists('members'); } };