+# == Schema Information
+#
+# Table name: ways
+#
+# way_id :integer default(0), not null, primary key
+# changeset_id :integer not null
+# timestamp :datetime not null
+# version :integer not null, primary key
+# visible :boolean default(TRUE), not null
+# redaction_id :integer
+#
+# Indexes
+#
+# ways_changeset_id_idx (changeset_id)
+# ways_timestamp_idx (timestamp)
+#
+# Foreign Keys
+#
+# ways_changeset_id_fkey (changeset_id => changesets.id)
+# ways_redaction_id_fkey (redaction_id => redactions.id)
+#
+
class OldWay < ActiveRecord::Base
include ConsistencyValidations
include ObjectMetadata
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