Ruby on Rails
Friday, January 27, 2012
Hi, I want to do a polymorphic association like that:
class User
has_many :my_posts, :as => :owner
end
class Post
belongs_to, :owner, :polymorphic => true
end
meaning that I want to do:
@user = User.new
@user.my_posts (and that would return Post objects)
also
@post = Post.new
@post.owner (this would return a User object)
How can I do that?
Thanks in advance.
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment