【发布时间】:2012-02-02 07:16:04
【问题描述】:
我正在使用 Rails 3。可能存在重复的 here。但它并没有解决我的问题,也没有任何其他解决方案。
我的迁移如下
class AddConfirmableToDevise < ActiveRecord::Migration
def change
change_table(:users) do |t|
t.confirmable
end
add_index :users, :confirmation_token, :unique => true
end
end
我确实在User 模型中添加了devise :confirmable。
我的rake db:migrate 没有输出。我的注册页面给出了错误:
undefined local variable or method 'confirmed_at' for #User
有人知道吗?
【问题讨论】:
-
您应该知道,devise 中的迁移助手(如
t.confirmable)自 2.0 版起已弃用。从现在开始,你应该是adding devise columns manually
标签: ruby-on-rails devise