25 lines
553 B
Ruby
25 lines
553 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserAuthTokenLog < ActiveRecord::Base
|
|
belongs_to :user
|
|
end
|
|
|
|
# == 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
|
|
#
|
|
# Indexes
|
|
#
|
|
# index_user_auth_token_logs_on_user_id (user_id)
|
|
#
|