debian-mirror-gitlab/app/models/group_custom_attribute.rb

7 lines
175 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
class GroupCustomAttribute < ActiveRecord::Base
belongs_to :group
validates :group, :key, :value, presence: true
validates :key, uniqueness: { scope: [:group_id] }
end