blob: cf2bb93487513dfd5d24cf154c2e4aba59165a2a (
plain)
1
2
3
4
5
6
|
class FertilizerComposition < ApplicationRecord
belongs_to :fertilizer_product
belongs_to :fertilizer_component
validates :percent_w, numericality: { greater_than: 0, less_than_or_equal_to: 100 }
end
|