id(); $table->string('username')->unique(); $table->string('first_name'); $table->string('last_name'); $table->string('email')->unique(); $table->string('phone_number')->nullable(); $table->timestamp('email_verified_at')->nullable(); $table->string('user_type')->default('user'); $table->string('password'); $table->string('status')->default('pending'); $table->rememberToken(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('users'); } }