5 lines
96 B
Ruby
5 lines
96 B
Ruby
class Rating < ActiveRecord::Base
|
|
belongs_to :comment
|
|
has_many :taggings, as: :taggable
|
|
end
|