]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/node_tag.rb
Validations on the way tags, with unit tests
[rails.git] / app / models / node_tag.rb
index de3d0629c4d29ce5769aa8f7ede0c65f020a9758..6b21e4b01422a6e18c017afc18730d136fd3e68f 100644 (file)
@@ -4,5 +4,5 @@ class NodeTag < ActiveRecord::Base
   belongs_to :node, :foreign_key => 'id'
   
   validates_presence_of :id
-  validates_length_of :k, :v, :within => 0..255, :allow_blank => true
+  validates_length_of :k, :v, :maximum => 255, :allow_blank => true
 end