Rails 批量分配安全性东西非常适合生产代码。但是当我在做诸如为数据库播种之类的事情时,我希望能够使用比
joe = User.create!(name: 'Joe', email: 'joe@blow.com')
model = MyModel.new
model.update_attributes({name: 'Mod', description: 'blah', creator: joe},
as: :admin, without_protection: true)
model.save!
如
joe = User.create!(name: 'Joe', email: 'joe@blow.com')
MyModel.create!({name: 'Mod', description: 'blah', creator: joe})
有没有一种简单的方法可以仅对像这样的开发脚本禁用批量分配?