How do turn off validation in Rails 3.2.3
in seeds.rb
? I did this
u1 = User.create email: 'my@email.com', password: '123', validate: false
but it said Can't mass-assign protected attributes: validate
. I know what it means. So how do I get rid of that error?