[Error][Rails 4] Undefined method `attr_accessible'

Hi Guy, I’m a **beginner with Ruby on Rails.**I insert new colum rails generate migration add_premium_to_jobs premium:boolean after rake db:migrate And add in model → job.rb ,the attribute attr_accessible :premium Console error : undefined method `attr_accessible’

Can Help me?

Regards Chikaawa

attr_accessible and attr_protected were removed in rails 4. You can get them back with the protected_attributes gem but the recommendation is to use strong parameters instead.

Fred