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