]> 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 f0c5eea8b9e6900587340ff022d2fb5e42b85440..99d435d33a7d78dec9e00af3f38d263d57b2cfc5 100644 (file)
@@ -1,11 +1,10 @@
 class WayTag < ActiveRecord::Base
-  set_table_name 'current_way_tags'
-  set_primary_keys :way_id, :k
+  self.table_name = "current_way_tags"
+  self.primary_keys = "way_id", "k"
 
   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