]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/005_tile_tracepoints.rb
Remove tile_for_point SQL functions
[rails.git] / db / migrate / 005_tile_tracepoints.rb
index 0e557067d45b9b13efad8cba340b5d8c823dd7ef..293b235c683d987bab338425697263c62df3cddc 100644 (file)
@@ -8,14 +8,10 @@ class TileTracepoints < ActiveRecord::Migration[4.2]
     add_index "gps_points", ["tile"], :name => "points_tile_idx"
     remove_index "gps_points", :name => "points_idx"
 
-    if ENV["USE_DB_FUNCTIONS"]
-      Tracepoint.update_all("latitude = latitude * 10, longitude = longitude * 10, tile = tile_for_point(latitude * 10, longitude * 10)")
-    else
-      Tracepoint.all.each do |tp|
-        tp.latitude = tp.latitude * 10
-        tp.longitude = tp.longitude * 10
-        tp.save!
-      end
+    Tracepoint.all.each do |tp|
+      tp.latitude = tp.latitude * 10
+      tp.longitude = tp.longitude * 10
+      tp.save!
     end
   end