1
0
This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
body_tracking/app/models/threshold.rb
2020-06-21 02:48:32 +02:00

7 lines
219 B
Ruby

class Threshold < QuantityValue
belongs_to :target, foreign_key: 'registry_id', foreign_type: 'foreign_type',
inverse_of: :thresholds, polymorphic: true, required: true
validates :value, numericality: true
end