has_many :old_nodes, :class_name => "OldWayNode", :foreign_key => [:way_id, :version]
has_many :old_tags, :class_name => "OldWayTag", :foreign_key => [:way_id, :version]
- validates_associated :changeset
+ validates :changeset, :presence => true, :associated => true
+ validates :timestamp, :presence => true
+ validates :visible, :inclusion => [true, false]
def self.from_way(way)
old_way = OldWay.new
points
end
- # Temporary method to match interface to nodes
- def tags_as_hash
- tags
- end
-
# Temporary method to match interface to ways
def way_nodes
old_nodes