我有这个模型:
class User < ActiveRecord::Base
attr_accessible :subscription_process
def self.prepare_user
user = User.new
user.subscription_process = true
user.save
end
end
在发送给用户的电子邮件中输入 - 我使用设备我的订阅进程等于 true。我想知道subscription_process 是否保存在某个地方?