X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/3666b674330ec8d14a224932a191d6121c5974e2..29020530a8fabe1d02e3bc9c41970c9030efc380:/app/models/node_tag.rb diff --git a/app/models/node_tag.rb b/app/models/node_tag.rb index fa21b1ff6..18e502439 100644 --- a/app/models/node_tag.rb +++ b/app/models/node_tag.rb @@ -13,11 +13,10 @@ class NodeTag < ApplicationRecord self.table_name = "current_node_tags" - self.primary_keys = "node_id", "k" 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