uuid('id')->primary()->index(); $table->uuid('user_id')->index(); $table->string('shared_token')->nullable()->index(); $table->text('basename'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('zips'); } }