uuid('id'); $table->uuid('user_id'); $table->bigInteger('upload')->default(0); $table->bigInteger('download')->default(0); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('traffic'); } }