id(); $table->foreignId('candidate_id')->constrained()->onDelete('cascade'); $table->enum('type', ['cv', 'cover_letter']); $table->string('file_path'); $table->string('original_name'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('documents'); } };