# frozen_string_literal: true # ProductReview # review: text # rating: integer class ProductReview < ApplicationRecord belongs_to :user_account belongs_to :product validates :review, presence: true validates :rating, presence: true, inclusion: { in: 1..5 } end