]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/note_comment.rb
Remove redundant presence validation on belongs_to
[rails.git] / app / models / note_comment.rb
index 999d045075f2f033bfc2a4e0ab9e8d83b296000a..635a5b0def53444f6b5ead14c4d11685a4af6d63 100644 (file)
@@ -29,7 +29,7 @@ class NoteComment < ApplicationRecord
 
   validates :id, :uniqueness => true, :presence => { :on => :update },
                  :numericality => { :on => :update, :only_integer => true }
-  validates :note, :presence => true, :associated => true
+  validates :note, :associated => true
   validates :visible, :inclusion => [true, false]
   validates :author, :associated => true
   validates :event, :inclusion => %w[opened closed reopened commented hidden]