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 [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

