Skip to content
Snippets Groups Projects
rating.rb 349 B
Newer Older
# == Schema Information
#
# Table name: ratings
#
#  id          :integer          not null, primary key
#  name        :string
#  created_at  :datetime         not null
#  updated_at  :datetime         not null
#  description :string
#

class Rating < ActiveRecord::Base
  has_many :review_ratings
  has_many :reviews, through: :review_ratings
end