mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-08 00:23:01 +08:00
10 lines
288 B
Ruby
10 lines
288 B
Ruby
|
class SampleCustomField < ActiveRecord::Base
|
||
|
validates :value,
|
||
|
presence: true,
|
||
|
length: { maximum: 100 }
|
||
|
validates :custom_field, :sample, presence: true
|
||
|
|
||
|
belongs_to :custom_field, inverse_of: :sample_custom_fields
|
||
|
belongs_to :sample, inverse_of: :sample_custom_fields
|
||
|
end
|