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
|
2015-03-04 17:14:00 -05:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2015-01-22 12:40:03 -05:00
|
|
|
#
|
|
|
|
|
2014-11-25 11:15:30 -05:00
|
|
|
class Identity < ActiveRecord::Base
|
2015-02-05 17:20:55 -05:00
|
|
|
include Sortable
|
2014-11-25 11:15:30 -05:00
|
|
|
belongs_to :user
|
|
|
|
|
2015-02-02 23:36:54 -05:00
|
|
|
validates :extern_uid, allow_blank: true, uniqueness: { scope: :provider }
|
2015-04-11 10:56:45 -04:00
|
|
|
validates :user_id, uniqueness: { scope: :provider }
|
2015-01-22 12:40:03 -05:00
|
|
|
end
|