2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-08-17 23:43:59 -05:00
|
|
|
class Oauth2UserInfo < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
|
|
|
|
|
|
|
end
|
2013-08-27 19:42:58 -05:00
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: oauth2_user_infos
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# user_id :integer not null
|
2019-01-11 13:29:56 -06:00
|
|
|
# uid :string not null
|
|
|
|
# provider :string not null
|
|
|
|
# email :string
|
|
|
|
# name :string
|
2014-08-27 00:19:25 -05:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2013-08-27 19:42:58 -05:00
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# index_oauth2_user_infos_on_uid_and_provider (uid,provider) UNIQUE
|
|
|
|
#
|