scinote-web/app/models/sample_custom_field.rb

8 lines
292 B
Ruby
Raw Normal View History

2016-02-12 23:52:43 +08:00
class SampleCustomField < ActiveRecord::Base
validates :value, presence: true, length: { maximum: NAME_MAX_LENGTH }
2016-02-12 23:52:43 +08:00
validates :custom_field, :sample, presence: true
belongs_to :custom_field, inverse_of: :sample_custom_fields
belongs_to :sample, inverse_of: :sample_custom_fields
end