I have a User model.
And User has a field called Balance (which represents how much money he has in his account).
I clearly don't want to make it attr_accessible.
But I want to be able to change its value (say when I charge him for something).
How do I write a getter/setter method for this attribute?