discourse/app/models/user_auth_token_log.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
553 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class UserAuthTokenLog < ActiveRecord::Base
belongs_to :user
end
2017-03-22 02:26:53 -04:00
# == Schema Information
#
# Table name: user_auth_token_logs
#
# id :integer not null, primary key
# action :string not null
# user_auth_token_id :integer
# user_id :integer
# client_ip :inet
# user_agent :string
# auth_token :string
# created_at :datetime
# path :string
#
2019-04-26 04:23:27 -04:00
# Indexes
#
# index_user_auth_token_logs_on_user_id (user_id)
#