Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_custom_attribute.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ac6e5f2550b2ac501ef71566709fabcc180edfd (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class GroupCustomAttribute < ApplicationRecord
  belongs_to :group

  validates :group, :key, :value, presence: true
  validates :key, uniqueness: { scope: [:group_id] }
end