This is a very good question. I was as well very confused with all of this and I finaly undersood the point.
Many people on this thread and on google explain very well that :
attr_accessible specifies a whitelist of attributes that are allowed to be updated in bulk (all the attributes of an object model together at the same time)
This is mainly (and only) to protect your application from "Mass assignement" pirate exploit.
This is explained here on the official Rails doc : Mass Assignement
attr_accessor is a ruby code to (quickly) create setter and getter in a Class.
That's all.
NOW what is missing as explaination is that when you create somehow a link between a (rails)model with a database table you NEVER, NEVER, NEVER needs attr_accessor in your model to create setters and getters in order to be able to modify your table's records.
This is because your model inherit all methods from the ActiveRecord::Base Class, which defines already for you basics CRUD accessors (Create, Read, Update, Delete).
This is explained on the offical doc here Rails Model and here Overwriting default accessor (scroll down to the chapter "Overwrite default accessor")
Say for instance : we have a database table called "users" that contains three columns "firstname", "lastname" and "role" :
SQL instructions :
CREATE TABLE users (
firstname string,
lastname string
role string
);
I assumed that you set the option config.active_record.whitelist_attributes = true in your config/environnement/production.rb to protect your application from Mass assignement exploit. This is explained here : Mass Assignement
Your Rails model will perfectly work with the Model here below :
class User < ActiveRecord::Base
end
However you will need to update each attribute of user separately in your controller for your form's View to work :
def update
@user = User.find_by_id(params[:id])
@user.firstname = params[:user][:firstname]
@user.lastname = params[:user][:lastname]
if @user.save
# Use of I18 internationlization t method for the flash message
flash[:success] = t('activerecord.successful.messages.updated', :model => User.model_name.human)
end
respond_with(@user)
end
Now to ease your life, you don't want to make complicated controller for your User model.
So you will use the attr_accessible special method in your Class model :
class User < ActiveRecord::Base
attr_accessible :firstname, :lastname
end
So you can use the "highway" (mass assignement) to update :
def update
@user = User.find_by_id(params[:id])
if @user.update_attributes(params[:user])
# Use of I18 internationlization t method for the flash message
flash[:success] = t('activerecord.successful.messages.updated', :model => User.model_name.human)
end
respond_with(@user)
end
You didn't add the "role" attributes to the attr_accessor list because you don't let your users set by themself their role (like admin). You do this yourself on another special admin View.
Though your user view doesn't show a "role" field, a pirate could easily send a HTTP POST request that include "role" in the params hash. The missign "role" attribute on the attr_accessible is to protect your application from that.
You can still modify your user.role attribute on its own like below, but not with all attributes together.
@user.role = DEFAULT_ROLE
NOW, why the hell would you use the attr_accessor ?
This is in the case your user form do show a field that doesn't exist in your users table as a column.
For instance, say your user view show a "please-tell-the-admin-that-I'm-in-here" field.
You don't want to store this info in your table. You just want that Rails send you an e-mail warning you that one "crazy" ;-) user has subscribed.
To be able to make use of this info you need to store it temporarily somewhere.
What more easy than recover it in a user.peekaboo attribute ?
So you add this field to your model :
class User < ActiveRecord::Base
attr_accessible :firstname, :lastname
attr_accessor :peekaboo
end
So you will be able to make an educated use of the user.peekaboo attribut somewhere in your controller to send an e-mail or do whatever you want.
ActiveRecord will not save the "peekaboo" attribut in your table when you do a "user.save" because she don't see any column matching this name in her model.
I hope this clear the question :o)
attr_accessoris used to generate getter and setter methods. Please see my answer to a previous question for a pretty comprehensive explanation ofattr_accessible: stackoverflow.com/questions/2652907/… then update your question if you need any other specific details after that. – mikej Jun 28 '10 at 22:02