gitlab-org--gitlab-foss/app/models/group_custom_attribute.rb

9 lines
205 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class GroupCustomAttribute < ApplicationRecord
2017-09-18 11:07:38 -04:00
belongs_to :group
validates :group, :key, :value, presence: true
validates :key, uniqueness: { scope: [:group_id] }
end