]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/changeset_comment.rb
Merge branch 'pull/3472'
[rails.git] / app / models / changeset_comment.rb
index 529641c7e94ffb968be8fd31e0532e0e4eb97c81..1b78f98e8d2da289ddefa3c25262ffc70e790af3 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 }
-  validates :changeset, :presence => true, :associated => true
-  validates :author, :presence => true, :associated => true
+                 :numericality => { :on => :update, :only_integer => true }
+  validates :changeset, :associated => true
+  validates :author, :associated => true
   validates :visible, :inclusion => [true, false]
   validates :body, :characters => true