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