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