2018-02-07 22:28:28 +08:00
|
|
|
class RepositoryListItem < ApplicationRecord
|
2018-02-09 23:28:21 +08:00
|
|
|
has_many :repository_list_values, inverse_of: :repository_list_item
|
2018-02-09 21:11:56 +08:00
|
|
|
belongs_to :repository, inverse_of: :repository_list_items
|
2018-02-12 16:05:41 +08:00
|
|
|
belongs_to :repository_column, inverse_of: :repository_list_items
|
2018-02-09 21:11:56 +08:00
|
|
|
belongs_to :created_by,
|
|
|
|
foreign_key: :created_by_id,
|
|
|
|
class_name: 'User'
|
|
|
|
belongs_to :last_modified_by,
|
|
|
|
foreign_key: :last_modified_by_id,
|
|
|
|
class_name: 'User'
|
2018-02-09 23:28:21 +08:00
|
|
|
validates :data,
|
2018-02-07 22:28:28 +08:00
|
|
|
presence: true,
|
2018-02-12 16:09:56 +08:00
|
|
|
uniqueness: { scope: :repository_column, case_sensitive: false },
|
2018-02-07 22:28:28 +08:00
|
|
|
length: { maximum: Constants::TEXT_MAX_LENGTH }
|
|
|
|
end
|