- belongs_to :user
- has_many :diary_comments, :include => :user,
- :conditions => ["users.visible = ?", true],
- :order => "diary_comments.id"
+ belongs_to :user, :counter_cache => true
+ belongs_to :language, :foreign_key => 'language_code'
+
+ has_many :comments, -> { order(:id).preload(:user) }, :class_name => "DiaryComment"
+ has_many :visible_comments, -> { joins(:user).where(:visible => true, :users => { :status => ["active", "confirmed"] }).order(:id) }, :class_name => "DiaryComment"
+
+ scope :visible, -> { where(:visible => true) }