mirror of
https://github.com/danog/yawarehouse.git
synced 2024-11-26 20:14:49 +01:00
6 lines
136 B
Ruby
6 lines
136 B
Ruby
|
class Product < ApplicationRecord
|
||
|
belongs_to :section
|
||
|
validates :count, presence: true
|
||
|
validates :description, presence: true
|
||
|
end
|