2019-05-08 19:49:43 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-23 21:19:08 +08:00
|
|
|
class SampleCustomField < ApplicationRecord
|
2017-04-11 20:55:44 +08:00
|
|
|
include SearchableModel
|
|
|
|
|
2016-09-21 21:35:23 +08:00
|
|
|
auto_strip_attributes :value, nullify: false
|
2019-05-08 19:49:43 +08:00
|
|
|
validates :value, presence: true, length: { maximum: Constants::NAME_MAX_LENGTH }
|
2016-02-12 23:52:43 +08:00
|
|
|
validates :custom_field, :sample, presence: true
|
|
|
|
|
2019-05-08 19:49:43 +08:00
|
|
|
belongs_to :custom_field, inverse_of: :sample_custom_fields
|
|
|
|
belongs_to :sample, inverse_of: :sample_custom_fields
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|