2018-07-25 05:30:33 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-28 09:17:42 -04:00
|
|
|
class UserCustomAttribute < ApplicationRecord
|
2017-09-28 12:49:42 -04:00
|
|
|
belongs_to :user
|
|
|
|
|
|
|
|
validates :user_id, :key, :value, presence: true
|
|
|
|
validates :key, uniqueness: { scope: [:user_id] }
|
|
|
|
end
|