scinote-web/app/models/protocol_keyword.rb

16 lines
532 B
Ruby
Raw Normal View History

2017-06-23 21:19:08 +08:00
class ProtocolKeyword < ApplicationRecord
auto_strip_attributes :name, nullify: false
2016-09-29 20:12:52 +08:00
validates :name,
uniqueness: { scope: :team },
length: { minimum: Constants::NAME_MIN_LENGTH,
maximum: Constants::NAME_MAX_LENGTH }
2017-01-24 23:34:21 +08:00
validates :team, presence: true
2016-07-21 19:11:15 +08:00
2019-05-09 23:10:02 +08:00
belongs_to :team, inverse_of: :protocol_keywords
2016-07-21 19:11:15 +08:00
2017-01-24 23:34:21 +08:00
has_many :protocol_protocol_keywords,
inverse_of: :protocol_keyword,
dependent: :destroy
2016-07-21 19:11:15 +08:00
has_many :protocols, through: :protocol_protocol_keywords
end