]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/old_node_tag.rb
Remove redundant presence validation on belongs_to
[rails.git] / app / models / old_node_tag.rb
index f2cba896cf031c7b8efbc14742e83977b197137c..ec48c1c0483d51c251bc9d937b68c8a483eeda28 100644 (file)
@@ -18,7 +18,7 @@ class OldNodeTag < ApplicationRecord
 
   belongs_to :old_node, :foreign_key => [:node_id, :version]
 
-  validates :old_node, :presence => true, :associated => true
+  validates :old_node, :associated => true
   validates :k, :v, :allow_blank => true, :length => { :maximum => 255 }, :characters => true
   validates :k, :uniqueness => { :scope => [:node_id, :version] }
 end