mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
7 lines
244 B
Ruby
7 lines
244 B
Ruby
class ResultText < ActiveRecord::Base
|
|
auto_strip_attributes :text, nullify: false
|
|
validates :text, presence: true, length: { maximum: TEXT_MAX_LENGTH }
|
|
validates :result, presence: true
|
|
|
|
belongs_to :result, inverse_of: :result_text
|
|
end
|