mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-19 08:52:25 +01:00
13 lines
334 B
Ruby
13 lines
334 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Product is a model for the merchandise hold information of product in store
|
|
class Product < ApplicationRecord
|
|
belongs_to :product_category
|
|
|
|
has_and_belongs_to_many :machines
|
|
|
|
validates_numericality_of :amount, greater_than: 0, allow_nil: true
|
|
|
|
scope :active, -> { where(is_active: true) }
|
|
end
|