Method: Mongoid::Generators::DeviseGenerator#migration_data

Defined in:
lib/generators/mongoid/devise_generator.rb

#migration_dataObject



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/generators/mongoid/devise_generator.rb', line 23

def migration_data
"  ## Database authenticatable\n  field :email,              type: String, default: \"\"\n  field :encrypted_password, type: String, default: \"\"\n\n  ## Recoverable\n  field :reset_password_token,   type: String\n  field :reset_password_sent_at, type: Time\n\n  ## Rememberable\n  field :remember_created_at, type: Time\n\n  ## Trackable\n  # field :sign_in_count,      type: Integer, default: 0\n  # field :current_sign_in_at, type: Time\n  # field :last_sign_in_at,    type: Time\n  # field :current_sign_in_ip, type: String\n  # field :last_sign_in_ip,    type: String\n\n  ## Confirmable\n  # field :confirmation_token,   type: String\n  # field :confirmed_at,         type: Time\n  # field :confirmation_sent_at, type: Time\n  # field :unconfirmed_email,    type: String # Only if using reconfirmable\n\n  ## Lockable\n  # field :failed_attempts, type: Integer, default: 0 # Only if lock strategy is :failed_attempts\n  # field :unlock_token,    type: String # Only if unlock strategy is :email or :both\n  # field :locked_at,       type: Time\n"
end