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