X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ff7ddb6b86bf918a9418af7382836b41594d45e4..HEAD:/db/migrate/005_tile_tracepoints.rb diff --git a/db/migrate/005_tile_tracepoints.rb b/db/migrate/005_tile_tracepoints.rb index b46fdf25f..293b235c6 100644 --- a/db/migrate/005_tile_tracepoints.rb +++ b/db/migrate/005_tile_tracepoints.rb @@ -1,5 +1,3 @@ -require "migrate" - class TileTracepoints < ActiveRecord::Migration[4.2] class Tracepoint < ApplicationRecord self.table_name = "gps_points" @@ -10,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