我已经使用devise创建了一个用户模型,但是现在我想添加对token_authenticable的支持,所以我需要迁移这些添加.以下是正确的,什么类型应该是token_authenticatable?
class AddAuthenticationTokenToUser < ActiveRecord::Migration def change add_column :users,:token_authenticatable add_index :users,:authentication_token,:unique => true end end
解决方法
从Github的
devise 2.0 generator(第74行):
# t.string :authentication_token