uuid('id')->primary(); $table->string('username')->unique(); $table->string('password')->nullable(); $table->boolean('enabled')->default(true); $table->string('first_name'); $table->string('last_name'); $table->string('email'); $table->timestamp('email_verified_at')->nullable(); $table->string('phone')->nullable(); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } };