X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a41d500b9f65ec9f4e848effd38dc1ae117e7594..60426328065bd897d325fed6ce91a8e66e3ab38d:/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