id(); $table->string('name', 255); $table->string('email', 255)->unique(); $table->timestamp('email_verified_at')->nullable(); $table->string('password', 255); $table->rememberToken(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('users'); } };