scinote-web/app/models/repository_text_value.rb

22 lines
634 B
Ruby
Raw Normal View History

2017-06-23 21:19:08 +08:00
class RepositoryTextValue < ApplicationRecord
2017-06-28 21:21:32 +08:00
belongs_to :created_by,
foreign_key: :created_by_id,
class_name: 'User',
optional: true
belongs_to :last_modified_by,
foreign_key: :last_modified_by_id,
class_name: 'User',
optional: true
2017-12-20 00:53:45 +08:00
has_one :repository_cell, as: :value, dependent: :destroy, inverse_of: :value
accepts_nested_attributes_for :repository_cell
validates :repository_cell, presence: true
2017-06-06 23:35:29 +08:00
validates :data,
presence: true,
length: { maximum: Constants::TEXT_MAX_LENGTH }
2017-06-06 23:35:29 +08:00
def formatted
data
end
end