From the docs, I see that if I have a model:
User has_many Addresses that I can do this:
class User < AR::Base attr_accessible :addresses_attributes accepts_nested_attributes_for :addresses end that I should be able to set those attributes from User. But I can't. Do I also need to add an "attr_accessible" callout in the Address model?