Get rid of token authentication

This commit is contained in:
José Valim
2013-09-02 19:15:47 -03:00
parent 07f0ee75ee
commit dff7891b97
17 changed files with 9 additions and 488 deletions

View File

@@ -33,9 +33,6 @@ class CreateTables < ActiveRecord::Migration
t.string :unlock_token # Only if unlock strategy is :email or :both
t.datetime :locked_at
## Token authenticatable
t.string :authentication_token
t.timestamps
end

View File

@@ -44,7 +44,6 @@ ActiveRecord::Schema.define(:version => 20100401102949) do
t.integer "failed_attempts", :default => 0
t.string "unlock_token"
t.datetime "locked_at"
t.string "authentication_token"
t.datetime "created_at"
t.datetime "updated_at"
end