X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b63ce5d460cf794602aa7996cdd857dc39faa3d9..fc25c3d412829774abf0454e4dcc92e41f47454c:/app/models/node_tag.rb diff --git a/app/models/node_tag.rb b/app/models/node_tag.rb index 494260112..6bc1c555e 100644 --- a/app/models/node_tag.rb +++ b/app/models/node_tag.rb @@ -1,10 +1,11 @@ class NodeTag < ActiveRecord::Base set_table_name 'current_node_tags' + set_primary_keys :node_id, :k - belongs_to :node, :foreign_key => 'id' + belongs_to :node - validates_presence_of :id - validates_length_of :k, :v, :maximum => 255, :allow_blank => true - validates_uniqueness_of :id, :scope => :k - validates_numericality_of :id, :only_integer => true + validates_presence_of :node + validates_length_of :k, :maximum => 255, :allow_blank => true + validates_uniqueness_of :k, :scope => :node_id + validates_length_of :v, :maximum => 255, :allow_blank => true end