summaryrefslogtreecommitdiff
path: root/app/models/user_custom_attribute.rb
blob: eff25b31f9bcf595d5818a1fbfcf1ee57bca88a5 (plain)
1
2
3
4
5
6
class UserCustomAttribute < ActiveRecord::Base
  belongs_to :user

  validates :user_id, :key, :value, presence: true
  validates :key, uniqueness: { scope: [:user_id] }
end