price-point-api/test/models/price_report_test.rb
Mohammad Kanaan 5a9f9ee10c WIP 1
2026-05-30 19:15:24 +03:00

35 lines
916 B
Ruby

# == 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
# product_id :integer not null
# store_id :integer not null
# user_id :bigint not null
#
# Indexes
#
# index_price_reports_on_product_id (product_id)
# index_price_reports_on_store_id (store_id)
# index_price_reports_on_user_id (user_id)
#
# Foreign Keys
#
# fk_rails_... (product_id => products.id)
# fk_rails_... (store_id => stores.id)
# fk_rails_... (user_id => users.id)
#
require "test_helper"
class PriceReportTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end