ruby rails update email skip confirm email

# 1. Find the user in the database by email
user = User.find_by(email: '[email protected]')

# 2. Update the email without confirming
user.update(email: '[email protected]', confirmed_at: Time.now)

# 3. Save the changes
user.save(validate: false)