]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/old_relation_tag.rb
Add inverse_of to relationships that can't detect it automatically
[rails.git] / app / models / old_relation_tag.rb
index d6e6e19c2dfb921a4f4621e22f9d83b08b5f86c1..1fccdf7a841a52b559df91e4886b91438b4e4732 100644 (file)
@@ -16,7 +16,7 @@ class OldRelationTag < ApplicationRecord
   self.table_name = "relation_tags"
   self.primary_keys = "relation_id", "version", "k"
 
-  belongs_to :old_relation, :foreign_key => [:relation_id, :version]
+  belongs_to :old_relation, :foreign_key => [:relation_id, :version], :inverse_of => :old_tags
 
   validates :old_relation, :presence => true, :associated => true
   validates :k, :v, :allow_blank => true, :length => { :maximum => 255 }, :characters => true