Removed encryptable references on rails_app

This commit is contained in:
Rodrigo Flores 2012-05-09 14:49:55 -03:00
parent 0d868b9ec1
commit 39dc9a7ba6
3 changed files with 0 additions and 12 deletions

View File

@ -22,9 +22,6 @@ class Admin
field :confirmation_sent_at, :type => Time
field :unconfirmed_email, :type => String # Only if using reconfirmable
## Encryptable
field :password_salt, :type => String
## Lockable
field :locked_at, :type => Time
end

View File

@ -26,9 +26,6 @@ class User
field :current_sign_in_ip, :type => String
field :last_sign_in_ip, :type => String
## Encryptable
# field :password_salt, :type => String
## Confirmable
field :confirmation_token, :type => String
field :confirmed_at, :type => Time

View File

@ -22,9 +22,6 @@ class CreateTables < ActiveRecord::Migration
t.string :current_sign_in_ip
t.string :last_sign_in_ip
## Encryptable
# t.string :password_salt
## Confirmable
t.string :confirmation_token
t.datetime :confirmed_at
@ -60,9 +57,6 @@ class CreateTables < ActiveRecord::Migration
t.datetime :confirmation_sent_at
t.string :unconfirmed_email # Only if using reconfirmable
## Encryptable
t.string :password_salt
## Lockable
t.datetime :locked_at