1
0
mirror of https://github.com/danog/yawarehouse.git synced 2024-11-26 20:14:49 +01:00
yawarehouse/app/models/product.rb
2018-05-27 12:34:07 +02:00

6 lines
136 B
Ruby

class Product < ApplicationRecord
belongs_to :section
validates :count, presence: true
validates :description, presence: true
end