]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/node_tag.rb
Adding validations for the length of node tags, and the presence of the id (and versi...
[rails.git] / app / models / node_tag.rb
index 9795ff49328b760c304ed587e6df65755006044e..de3d0629c4d29ce5769aa8f7ede0c65f020a9758 100644 (file)
@@ -2,4 +2,7 @@ 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, :within => 0..255, :allow_blank => true
 end