That still saves the comment as commentable_id = 1, commentable_type = BaseContent.
So when I save a comment for Article with id 1 and another comment for Post with id 1, there now are two comments with commentable_id = 1, commentable_type = BaseContent and they both show up with I do Article.find(1).comments and Post.find(1).comments On Oct 29, 2:21 pm, reHa <[EMAIL PROTECTED]> wrote: > Have you tried this way? > > It worked for me: > > comment = Comment.New() > comment.commentable = post #instance of the actual post you are > commenting > # set comment properties here > comment.save > > > I'm just doing: > > > comment = Comment.New() > > # set comment properties here > > comment.save > > Post.comments << comment --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

