X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/222d31e435f003ec59e84860d2fa5129449f69de..34e3e51456774127d43408b7ab65c24f41373f62:/app/models/way_tag.rb diff --git a/app/models/way_tag.rb b/app/models/way_tag.rb index 5ce7c8fbc..6204af9a5 100644 --- a/app/models/way_tag.rb +++ b/app/models/way_tag.rb @@ -1,6 +1,11 @@ class WayTag < ActiveRecord::Base - set_table_name 'current_way_tags' + self.table_name = "current_way_tags" + self.primary_keys = "way_id", "k" - belongs_to :way, :foreign_key => 'id' + 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 end