id(); $table->foreignId('career_id')->constrained()->onDelete('cascade'); $table->string('name'); $table->date('birthdate'); $table->string('resume_file'); $table->string('email'); $table->string('phone_number'); $table->text('cover_letter')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('applications'); } };