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