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