2019-05-03 06:17:27 +08:00
# frozen_string_literal: true
2013-08-18 12:43:59 +08:00
class Oauth2UserInfo < ActiveRecord :: Base
belongs_to :user
2022-01-25 18:29:31 +08:00
before_save do
2022-01-07 00:50:18 +08:00
Discourse . deprecate (
" Oauth2UserInfo is deprecated. Use `ManagedAuthenticator` and `UserAssociatedAccount` instead. For more information, see https://meta.discourse.org/t/106695 " ,
drop_from : " 2.9.0 " ,
output_in_test : true ,
)
end
2013-08-18 12:43:59 +08:00
end
2013-08-28 08:42:58 +08:00
# == Schema Information
#
# Table name: oauth2_user_infos
#
# id :integer not null, primary key
# user_id :integer not null
2019-01-12 03:29:56 +08:00
# uid :string not null
# provider :string not null
# email :string
# name :string
2014-08-27 13:19:25 +08:00
# created_at :datetime not null
# updated_at :datetime not null
2013-08-28 08:42:58 +08:00
#
# Indexes
#
2019-10-23 17:27:56 +08:00
# index_oauth2_user_infos_on_uid_and_provider (uid,provider) UNIQUE
2019-10-25 08:57:34 +08:00
# index_oauth2_user_infos_on_user_id_and_provider (user_id,provider)
2013-08-28 08:42:58 +08:00
#