2022-01-16 07:23:50 -05:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 00:58:28 -05:00
|
|
|
|
2022-01-16 07:23:50 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_ips
|
|
|
|
#
|
|
|
|
# user_id :bigint(8) primary key
|
|
|
|
# ip :inet
|
|
|
|
# used_at :datetime
|
|
|
|
#
|
|
|
|
|
|
|
|
class UserIp < ApplicationRecord
|
2024-02-06 04:08:07 -05:00
|
|
|
include DatabaseViewRecord
|
2024-11-08 05:08:36 -05:00
|
|
|
include InetContainer
|
2024-02-06 04:08:07 -05:00
|
|
|
|
2022-01-16 07:23:50 -05:00
|
|
|
self.primary_key = :user_id
|
|
|
|
|
2023-02-19 20:19:40 -05:00
|
|
|
belongs_to :user
|
2024-04-02 09:51:34 -04:00
|
|
|
|
|
|
|
scope :by_latest_used, -> { order(used_at: :desc) }
|
2022-01-16 07:23:50 -05:00
|
|
|
end
|