X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8938ab79975d4152a4d6d3c8ceafdbda30b6b367..70df26959bfb59ac834a93f7c1b44c4625afa99e:/app/models/relation.rb diff --git a/app/models/relation.rb b/app/models/relation.rb index 0adf1012d..0a4a660a6 100644 --- a/app/models/relation.rb +++ b/app/models/relation.rb @@ -27,9 +27,9 @@ class Relation < ApplicationRecord belongs_to :changeset - has_many :old_relations, -> { order(:version) } + has_many :old_relations, -> { order(:version) }, :inverse_of => :current_relation - has_many :relation_members, -> { order(:sequence_id) } + has_many :relation_members, -> { order(:sequence_id) }, :inverse_of => :relation has_many :relation_tags has_many :containing_relation_members, :class_name => "RelationMember", :as => :member @@ -263,7 +263,7 @@ class Relation < ApplicationRecord private def save_with_history! - t = Time.now.getutc + t = Time.now.utc self.version += 1 self.timestamp = t