X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5f8ab9e9244550b20b8d3bd97b3567df7020d06d..cd4fb9d44cdb46704fee9fc0a95f41978f401b2c:/app/models/node_tag.rb?ds=sidebyside diff --git a/app/models/node_tag.rb b/app/models/node_tag.rb index 9795ff493..494260112 100644 --- a/app/models/node_tag.rb +++ b/app/models/node_tag.rb @@ -2,4 +2,9 @@ class NodeTag < ActiveRecord::Base set_table_name 'current_node_tags' belongs_to :node, :foreign_key => 'id' + + 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 end