Commit 0daf53b759dd25bea0b3db880d03cc19abe6e2bb

Authored by Nihad Abbasov
1 parent 9f520a65

fix devise migrations issue

db/migrate/20110913200833_devise_create_users.rb
... ... @@ -34,7 +34,7 @@ class DeviseCreateUsers < ActiveRecord::Migration
34 34 # t.datetime :locked_at
35 35  
36 36 # Token authenticatable
37   - t.string :authentication_token
  37 + # t.string :authentication_token
38 38  
39 39 ## Invitable
40 40 # t.string :invitation_token
... ... @@ -46,7 +46,7 @@ class DeviseCreateUsers < ActiveRecord::Migration
46 46 add_index :users, :reset_password_token, :unique => true
47 47 # add_index :users, :confirmation_token, :unique => true
48 48 # add_index :users, :unlock_token, :unique => true
49   - add_index :users, :authentication_token, :unique => true
  49 + # add_index :users, :authentication_token, :unique => true
50 50 end
51 51  
52 52 def self.down
... ...