discourse/app/models/single_sign_on_record.rb

26 lines
707 B
Ruby
Raw Normal View History

class SingleSignOnRecord < ActiveRecord::Base
belongs_to :user
validates :external_id, uniqueness: true
end
2014-03-20 00:35:51 -04:00
# == Schema Information
#
# Table name: single_sign_on_records
#
2014-08-22 13:01:44 -04:00
# id :integer not null, primary key
# user_id :integer not null
2016-02-22 18:33:53 -05:00
# external_id :string not null
2014-08-22 13:01:44 -04:00
# last_payload :text not null
# created_at :datetime not null
# updated_at :datetime not null
2016-02-22 18:33:53 -05:00
# external_username :string
# external_email :string
# external_name :string
2016-10-31 05:32:11 -04:00
# external_avatar_url :string(1000)
2014-03-20 00:35:51 -04:00
#
# Indexes
#
# index_single_sign_on_records_on_external_id (external_id) UNIQUE
#