id(); $table->foreignId('document_id')->unsigned(); $table->text('file'); $table->string('file_type')->default(FileType::JPEG); $table->softDeletes(); $table->timestamps(); $table->foreign('document_id')->references('id')->on('documents'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('files'); } }