]> 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 9795ff49328b760c304ed587e6df65755006044e..6b21e4b01422a6e18c017afc18730d136fd3e68f 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, :maximum => 255, :allow_blank => true
 end