2015-01-22 12:40:03 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: identities
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# extern_uid :string(255)
|
|
|
|
# provider :string(255)
|
|
|
|
# user_id :integer
|
|
|
|
#
|
|
|
|
|
2014-11-25 11:15:30 -05:00
|
|
|
class Identity < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
|
2015-02-02 23:36:54 -05:00
|
|
|
validates :extern_uid, allow_blank: true, uniqueness: { scope: :provider }
|
2015-01-22 12:40:03 -05:00
|
|
|
end
|