increments('id'); $table->unsignedMediumInteger('torrent')->default(0)->index('torrent'); $table->string('filename')->default(''); $table->unsignedBigInteger('size')->default(0); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('files'); } }