mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
15 lines
548 B
Ruby
15 lines
548 B
Ruby
class ProtocolKeyword < ApplicationRecord
|
|
auto_strip_attributes :name, nullify: false
|
|
validates :name,
|
|
uniqueness: { scope: :team },
|
|
length: { minimum: Constants::NAME_MIN_LENGTH,
|
|
maximum: Constants::NAME_MAX_LENGTH }
|
|
validates :team, presence: true
|
|
|
|
belongs_to :team, inverse_of: :protocol_keywords, optional: true
|
|
|
|
has_many :protocol_protocol_keywords,
|
|
inverse_of: :protocol_keyword,
|
|
dependent: :destroy
|
|
has_many :protocols, through: :protocol_protocol_keywords
|
|
end
|