X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e660e609661edadc1ed5ad49d6e83e936b2f91cd..396f2e28dd27d514f7882c3918103b12764038de:/app/models/way_tag.rb?ds=sidebyside diff --git a/app/models/way_tag.rb b/app/models/way_tag.rb index 98ff62f5f..99d435d33 100644 --- a/app/models/way_tag.rb +++ b/app/models/way_tag.rb @@ -3,9 +3,8 @@ class WayTag < ActiveRecord::Base 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