mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 14:19:49 +08:00
9 lines
213 B
Ruby
9 lines
213 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserIpAddressHistory < ActiveRecord::Base
|
|
belongs_to :user
|
|
|
|
validates :user_id, presence: true
|
|
validates :ip_address, presence: true, uniqueness: { scope: :user_id }
|
|
end
|