id(); $table->string('first_name'); $table->string('last_name'); $table->string('email')->unique()->nullable(); $table->string('phone_number')->nullable()->index(); $table->timestamp('email_verified_at')->nullable(); $table->string('password')->nullable(); $table->rememberToken(); $table->boolean('verified')->default(false); $table->jsonb('options')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };