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

16 lines
322 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
#
class Identity < ActiveRecord::Base
belongs_to :user
validates :extern_uid, allow_blank: true, uniqueness: {scope: :provider}
2015-01-22 17:40:03 +00:00
end