id(); $table->foreignId('application_id')->constrained()->cascadeOnDelete(); $table->string('file_path'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('uploads'); } };