X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/72e59b49fa0512e5c7d16217edce62225094ffe3..8bfb5cae8ad5aa2973349b128baa06d8b5ee5e7b:/app/models/old_way.rb?ds=sidebyside diff --git a/app/models/old_way.rb b/app/models/old_way.rb index 474c3e02b..30bc12cc2 100644 --- a/app/models/old_way.rb +++ b/app/models/old_way.rb @@ -1,10 +1,13 @@ class OldWay < ActiveRecord::Base include ConsistencyValidations - include Redactable self.table_name = "ways" self.primary_keys = "way_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_way, :class_name => "Way", :foreign_key => "way_id"