2026-05-25 16:15:06 +00:00
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: price_reports
|
|
|
|
|
#
|
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
|
# discount_price :decimal(, )
|
|
|
|
|
# downvotes :integer
|
|
|
|
|
# price :decimal(, )
|
|
|
|
|
# reported_at :datetime
|
|
|
|
|
# upvotes :integer
|
|
|
|
|
# created_at :datetime not null
|
|
|
|
|
# updated_at :datetime not null
|
|
|
|
|
# guest_id :integer not null
|
|
|
|
|
# product_id :integer not null
|
|
|
|
|
# store_id :integer not null
|
|
|
|
|
#
|
|
|
|
|
# Indexes
|
|
|
|
|
#
|
|
|
|
|
# index_price_reports_on_guest_id (guest_id)
|
|
|
|
|
# index_price_reports_on_product_id (product_id)
|
|
|
|
|
# index_price_reports_on_store_id (store_id)
|
|
|
|
|
#
|
|
|
|
|
# Foreign Keys
|
|
|
|
|
#
|
|
|
|
|
# fk_rails_... (guest_id => guests.id)
|
|
|
|
|
# fk_rails_... (product_id => products.id)
|
|
|
|
|
# fk_rails_... (store_id => stores.id)
|
|
|
|
|
#
|
2026-05-17 11:12:43 +00:00
|
|
|
class PriceReport < ApplicationRecord
|
|
|
|
|
belongs_to :product
|
|
|
|
|
belongs_to :store
|
|
|
|
|
belongs_to :guest
|
2026-05-26 17:37:52 +00:00
|
|
|
has_many :moderation_logs, as: :moderatable, dependent: :destroy
|
2026-05-17 11:12:43 +00:00
|
|
|
end
|