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

20 lines
446 B
Ruby
Raw Normal View History

2015-01-22 17:40:03 +00:00
# == Schema Information
#
# Table name: identities
#
# id :integer not null, primary key
# extern_uid :string(255)
# provider :string(255)
# user_id :integer
2015-03-04 22:14:00 +00:00
# created_at :datetime
# updated_at :datetime
2015-01-22 17:40:03 +00:00
#
class Identity < ActiveRecord::Base
include Sortable
belongs_to :user
validates :extern_uid, allow_blank: true, uniqueness: { scope: :provider }
2015-04-11 14:56:45 +00:00
validates :user_id, uniqueness: { scope: :provider }
2015-01-22 17:40:03 +00:00
end