id('LampiranId'); $table->unsignedInteger('PelaporanId'); $table->integer('IpalId')->nullable(); $table->unsignedInteger('KomponenId'); $table->string('Dokumen', 255); $table->dateTime('TanggalUnggah'); $table->unsignedInteger('CerobongId')->nullable(); // Indexes $table->index('PelaporanId', 'index_PelaporanId'); $table->index('KomponenId', 'index_KomponenId'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('Lampiran'); } };