2026-05-25 16:15:06 +00:00
|
|
|
# == Schema Information
|
|
|
|
|
#
|
|
|
|
|
# Table name: products
|
|
|
|
|
#
|
|
|
|
|
# id :bigint not null, primary key
|
|
|
|
|
# barcode :string
|
|
|
|
|
# name :string
|
|
|
|
|
# created_at :datetime not null
|
|
|
|
|
# updated_at :datetime not null
|
|
|
|
|
#
|
|
|
|
|
# Indexes
|
|
|
|
|
#
|
|
|
|
|
# index_products_on_barcode (barcode) UNIQUE
|
|
|
|
|
#
|
2026-05-17 11:12:43 +00:00
|
|
|
class Product < ApplicationRecord
|
|
|
|
|
has_one_attached :image
|
2026-05-26 17:37:52 +00:00
|
|
|
has_many :price_reports, dependent: :destroy
|
2026-05-17 11:12:43 +00:00
|
|
|
end
|