gitlab-org--gitlab-foss/app/models/group_custom_attribute.rb
2018-07-26 16:55:41 -07:00

8 lines
206 B
Ruby

# frozen_string_literal: true
class GroupCustomAttribute < ActiveRecord::Base
belongs_to :group
validates :group, :key, :value, presence: true
validates :key, uniqueness: { scope: [:group_id] }
end