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

9 lines
204 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class UserCustomAttribute < ApplicationRecord
2017-09-28 16:49:42 +00:00
belongs_to :user
validates :user_id, :key, :value, presence: true
validates :key, uniqueness: { scope: [:user_id] }
end