]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/changeset_comment.rb
Merge remote-tracking branch 'upstream/pull/2431'
[rails.git] / app / models / changeset_comment.rb
index 529641c7e94ffb968be8fd31e0532e0e4eb97c81..ceb7d35597f75e816811214fbfa252eddd7470d0 100644 (file)
 #  changeset_comments_changeset_id_fkey  (changeset_id => changesets.id)
 #
 
-class ChangesetComment < ActiveRecord::Base
+class ChangesetComment < ApplicationRecord
   belongs_to :changeset
   belongs_to :author, :class_name => "User"
 
   validates :id, :uniqueness => true, :presence => { :on => :update },
-                 :numericality => { :on => :update, :integer_only => true }
+                 :numericality => { :on => :update, :only_integer => true }
   validates :changeset, :presence => true, :associated => true
   validates :author, :presence => true, :associated => true
   validates :visible, :inclusion => [true, false]