class OldWayTag < ApplicationRecord
self.table_name = "way_tags"
- belongs_to :old_way, :query_constraints => [:way_id, :version], :inverse_of => :old_tags
+ belongs_to :old_way, :foreign_key => [:way_id, :version], :inverse_of => :old_tags
validates :old_way, :associated => true
validates :k, :v, :allow_blank => true, :length => { :maximum => 255 }, :characters => true