2018-11-28 10:44:16 -05:00
|
|
|
class UserAssociatedAccount < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
2018-12-10 10:10:06 -05:00
|
|
|
|
|
|
|
def self.cleanup!
|
|
|
|
# This happens when a user starts the registration flow, but doesn't complete it
|
|
|
|
# Keeping the rows doesn't cause any technical issue, but we shouldn't store PII unless it's attached to a user
|
2018-12-11 04:58:20 -05:00
|
|
|
self.where("user_id IS NULL AND updated_at < ?", 1.day.ago).delete_all
|
2018-12-10 10:10:06 -05:00
|
|
|
end
|
2018-11-28 10:44:16 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_associated_accounts
|
|
|
|
#
|
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# provider_name :string not null
|
|
|
|
# provider_uid :string not null
|
2018-12-10 10:10:06 -05:00
|
|
|
# user_id :integer
|
2018-11-28 10:44:16 -05:00
|
|
|
# last_used :datetime not null
|
|
|
|
# info :jsonb not null
|
|
|
|
# credentials :jsonb not null
|
|
|
|
# extra :jsonb not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
#
|
|
|
|
# Indexes
|
|
|
|
#
|
|
|
|
# associated_accounts_provider_uid (provider_name,provider_uid) UNIQUE
|
|
|
|
# associated_accounts_provider_user (provider_name,user_id) UNIQUE
|
|
|
|
#
|