]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/old_way.rb
Merge remote-tracking branch 'upstream/pull/2641'
[rails.git] / app / models / old_way.rb
index c86590ed94a13f1da6046bbcd307f182f10d8fb5..b515322e325cc1aed3face1f1f44166fa2f9b171 100644 (file)
@@ -1,4 +1,26 @@
-class OldWay < ActiveRecord::Base
+# == Schema Information
+#
+# Table name: ways
+#
+#  way_id       :bigint(8)        default(0), not null, primary key
+#  changeset_id :bigint(8)        not null
+#  timestamp    :datetime         not null
+#  version      :bigint(8)        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 < ApplicationRecord
   include ConsistencyValidations
   include ObjectMetadata
 
@@ -116,11 +138,6 @@ class OldWay < ActiveRecord::Base
     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