X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8c029f8d79d07384cffafb82d4b5979181bda8ad..965fb0b3ae7c89ae46d606147811674d646b6acb:/app/models/way.rb diff --git a/app/models/way.rb b/app/models/way.rb index a9fdd88ee..e78d0df0b 100644 --- a/app/models/way.rb +++ b/app/models/way.rb @@ -12,12 +12,12 @@ class Way < ActiveRecord::Base has_many :old_ways, -> { order(:version) } has_many :way_nodes, -> { order(:sequence_id) } - has_many :nodes, -> { order("sequence_id") }, :through => :way_nodes + has_many :nodes, :through => :way_nodes has_many :way_tags has_many :containing_relation_members, :class_name => "RelationMember", :as => :member - has_many :containing_relations, :class_name => "Relation", :through => :containing_relation_members, :source => :relation, :extend => ObjectFinder + has_many :containing_relations, :class_name => "Relation", :through => :containing_relation_members, :source => :relation validates_presence_of :id, :on => :update validates_presence_of :changeset_id,:version, :timestamp