]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/old_way.rb
Merge pull request #4279 from tomhughes/changeset-tags-primary-key
[rails.git] / app / models / old_way.rb
index acf88ddcf61bc61fab89f925a40be62f7c48509f..dabf0aafbbfc24afc0ef566b24234f3fda4ef8b4 100644 (file)
@@ -2,7 +2,7 @@
 #
 # Table name: ways
 #
-#  way_id       :bigint(8)        default(0), not null, primary key
+#  way_id       :bigint(8)        not null, primary key
 #  changeset_id :bigint(8)        not null
 #  timestamp    :datetime         not null
 #  version      :bigint(8)        not null, primary key
@@ -97,7 +97,7 @@ class OldWay < ApplicationRecord
 
   # check whether this element is the latest version - that is,
   # has the same version as its "current" counterpart.
-  def is_latest_version?
+  def latest_version?
     current_way.version == version
   end
 end