person.rb 153 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 require_dependency 'person' class Person # TODO why this relationship doesn't exists in core? has_many :comments, :foreign_key => 'author_id' end