]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/way_tag.rb
Rename xml processing methods with an update_ prefix
[rails.git] / app / models / way_tag.rb
index 6204af9a5a909c8cc847b2594d1e790023d630a3..99d435d33a7d78dec9e00af3f38d263d57b2cfc5 100644 (file)
@@ -4,8 +4,7 @@ class WayTag < ActiveRecord::Base
 
   belongs_to :way
 
-  validates_presence_of :way
-  validates_length_of :k, :maximum => 255, :allow_blank => true
-  validates_uniqueness_of :k, :scope => :way_id
-  validates_length_of :v, :maximum => 255, :allow_blank => true
+  validates :way, :presence => true, :associated => true
+  validates :k, :v, :allow_blank => true, :length => { :maximum => 255 }
+  validates :k, :uniqueness => { :scope => :way_id }
 end