2022-01-16 23:23:50 +11:00
|
|
|
# frozen_string_literal: true
|
2023-02-20 16:58:28 +11:00
|
|
|
|
2022-01-16 23:23:50 +11:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: user_ips
|
|
|
|
#
|
|
|
|
# user_id :bigint(8) primary key
|
|
|
|
# ip :inet
|
|
|
|
# used_at :datetime
|
|
|
|
#
|
|
|
|
|
|
|
|
class UserIp < ApplicationRecord
|
|
|
|
self.primary_key = :user_id
|
|
|
|
|
2023-02-20 12:19:40 +11:00
|
|
|
belongs_to :user
|
2022-01-16 23:23:50 +11:00
|
|
|
|
|
|
|
def readonly?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|