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