]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/way_tag.rb
Merge remote-tracking branch 'upstream/pull/4826'
[rails.git] / app / models / way_tag.rb
index 6637c158535694aa017e2719f79b067913cf9527..04ce7abf552e9c2ed4f1565761dd2e531991358c 100644 (file)
 #  current_way_tags_id_fkey  (way_id => current_ways.id)
 #
 
-class WayTag < ActiveRecord::Base
+class WayTag < ApplicationRecord
   self.table_name = "current_way_tags"
-  self.primary_keys = "way_id", "k"
 
   belongs_to :way
 
-  validates :way, :presence => true, :associated => true
+  validates :way, :associated => true
   validates :k, :v, :allow_blank => true, :length => { :maximum => 255 }, :characters => true
   validates :k, :uniqueness => { :scope => :way_id }
 end