community.rb 219 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 require_dependency 'community' Community.class_eval do has_many :community_ratings has_many :comments, :class_name => 'Comment', :foreign_key => 'source_id', :dependent => :destroy, :order => 'created_at asc' end