2025-01-24 12:32:29 -05:00
|
|
|
class Product < ApplicationRecord
|
2025-01-24 14:11:47 -05:00
|
|
|
include Notifications
|
2025-01-24 12:32:29 -05:00
|
|
|
|
|
|
|
has_one_attached :featured_image
|
|
|
|
has_rich_text :description
|
|
|
|
|
|
|
|
validates :name, presence: true
|
|
|
|
validates :inventory_count, numericality: { greater_than_or_equal_to: 0 }
|
|
|
|
end
|