rails-guide-store/app/models/product.rb

10 lines
259 B
Ruby
Raw Normal View History

2025-01-24 17:32:29 +00:00
class Product < ApplicationRecord
has_many :subscribers, dependent: :destroy
has_one_attached :featured_image
has_rich_text :description
validates :name, presence: true
validates :inventory_count, numericality: { greater_than_or_equal_to: 0 }
end