id(); $table->string('username'); $table->string('discriminator'); $table->string('email')->unique(); $table->string('avatar')->nullable(); $table->boolean('verified'); $table->string('locale'); $table->boolean('mfa_enabled'); $table->string('refresh_token')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }