This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
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
|
|
|
|
self.primary_key = :user_id
|
|
|
|
|
2023-02-20 02:19:40 +01:00
|
|
|
belongs_to :user
|
2022-01-16 13:23:50 +01:00
|
|
|
|
|
|
|
def readonly?
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|