mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
7 lines
174 B
Ruby
7 lines
174 B
Ruby
class UserCustomAttribute < ActiveRecord::Base
|
|
belongs_to :user
|
|
|
|
validates :user_id, :key, :value, presence: true
|
|
validates :key, uniqueness: { scope: [:user_id] }
|
|
end
|