运行 rake 任务时不显示批量分配警告
我有一个包含如下几行的种子文件:
action_type = ActionType.find_or_create_by_name(:name => "register")
现在,当我执行 rake db:seed 时,尽管命令完成时没有提及任何警告,但数据库中没有创建任何记录。
仅当在 Rails 控制台中执行上述行时,它才会抱怨“警告:无法批量分配受保护的属性:名称”消息。
知道如何让 rake db:seed 显示这种类型的警告吗?
顺便说一句,只需将名称添加到 attr_accessible 列表中即可解决问题:
class ActionType < Base
attr_accessible :name
validates :name, :presence => true
end
I have a seed file with a couple of lines like the following:
action_type = ActionType.find_or_create_by_name(:name => "register")
Now, when I execute rake db:seed, although the command finishes without mentioning any warnings, no record is created in the database.
It was only when executing the above line in the rails console, that it complained with a "WARNING: Can't mass-assign protected attributes: name" message.
Any idea how I can make rake db:seed show this type of warning?
BTW just adding the name to the attr_accessible list solves the issue:
class ActionType < Base
attr_accessible :name
validates :name, :presence => true
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论