X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b70da7b8ea15ab48bb2f34155567cea6dffc8fc9..3ca8b63643b9cfa6ef964673aa4fff2cbeee78a3:/app/models/node_tag.rb diff --git a/app/models/node_tag.rb b/app/models/node_tag.rb index fa21b1ff6..d76a1a0ae 100644 --- a/app/models/node_tag.rb +++ b/app/models/node_tag.rb @@ -17,7 +17,7 @@ class NodeTag < ApplicationRecord belongs_to :node - validates :node, :presence => true, :associated => true + validates :node, :associated => true validates :k, :v, :allow_blank => true, :length => { :maximum => 255 }, :characters => true validates :k, :uniqueness => { :scope => :node_id } end