2017-07-09 13:41:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2010-10-09 17:00:33 -04:00
|
|
|
class Rating < ActiveRecord::Base
|
|
|
|
belongs_to :comment
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :taggings, as: :taggable
|
2019-10-04 00:14:48 -04:00
|
|
|
has_many :taggings_without_tag, -> { left_joins(:tag).where("tags.id": [nil, 0]) }, as: :taggable, class_name: "Tagging"
|
2019-05-02 08:42:56 -04:00
|
|
|
has_many :taggings_with_no_tag, -> { joins("LEFT OUTER JOIN tags ON tags.id = taggings.tag_id").where("tags.id": nil) }, as: :taggable, class_name: "Tagging"
|
2010-10-09 17:00:33 -04:00
|
|
|
end
|