bigIncrements('id'); $table->bigInteger('document_id')->unsigned()->nullable(); $table->string("link"); $table->foreign("document_id")->references("id")->on("documents"); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('files'); } }