module Devise::Models::Confirmable

def generate_confirmation_token

this token is being generated
Generates a new random token for confirmation, and stores the time
def generate_confirmation_token
  self.confirmed_at = nil
  self.confirmation_token = self.class.confirmation_token
  self.confirmation_sent_at = Time.now.utc
end