attr_accessible と attr_protected
- ActiveRecord クラスメソッド
attr_accessible
- 代入を許すカラムを明示的に指定する
- 追加されている属性以外はprotectedとなる
class User < ActiveRecord::Base attr_accessible :handle_name, :mail_address ... end
attr_protected
- 代入を制限するカラムを明示的に指定する
class Photo < ActiveRecord::Base attr_protected :id, :path ... end