X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/67dd9e4c9d487bdb5f38a09dc0c99def4989326e..7c42552f16c646d5a21595bc008503b7bbb311f7:/app/models/old_relation.rb diff --git a/app/models/old_relation.rb b/app/models/old_relation.rb index e4be8fc7f..20651f622 100644 --- a/app/models/old_relation.rb +++ b/app/models/old_relation.rb @@ -1,10 +1,13 @@ class OldRelation < ActiveRecord::Base include ConsistencyValidations - include Redactable self.table_name = "relations" self.primary_keys = "relation_id", "version" + # note this needs to be included after the table name changes, or + # the queries generated by Redactable will use the wrong table name. + include Redactable + belongs_to :changeset belongs_to :redaction belongs_to :current_relation, :class_name => "Relation", :foreign_key => "relation_id"