Ignore the creation_ip column which is no longer used

This commit is contained in:
Tom Hughes 2024-09-15 19:35:05 +01:00
parent fe96c0a524
commit 5bac49c51f

View file

@ -15,7 +15,6 @@
# pass_salt :string
# email_valid :boolean default(FALSE), not null
# new_email :string
# creation_ip :string
# languages :string
# status :enum default("pending"), not null
# terms_agreed :datetime
@ -50,6 +49,8 @@ class User < ApplicationRecord
require "digest"
include AASM
self.ignored_columns += ["creation_ip"]
has_many :traces, -> { where(:visible => true) }
has_many :diary_entries, -> { order(:created_at => :desc) }, :inverse_of => :user
has_many :diary_comments, -> { order(:created_at => :desc) }, :inverse_of => :user