id(); $table->string('name'); $table->string('email')->unique(); $table->string('password'); $table->rememberToken(); $table->string('profile_photo_path', 2048)->nullable(); $table->text('two_factor_secret')->nullable(); $table->text('two_factor_recovery_codes')->nullable(); $table->string('timezone')->default('UTC')->nullable(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('users'); } }