]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/20180204153242_tile_users.rb
Merge remote-tracking branch 'upstream/pull/4757'
[rails.git] / db / migrate / 20180204153242_tile_users.rb
index cf20aed460e802391bd2b3956b7ebcc9a4f05f59..53cea91cf552b61ed9db820f1ea989bf8dfef586 100644 (file)
@@ -1,13 +1,12 @@
 class TileUsers < ActiveRecord::Migration[5.1]
+  class User < ApplicationRecord
+  end
+
   def up
     add_column :users, :home_tile, :bigint
     add_index :users, [:home_tile], :name => "users_home_idx"
 
-    if ENV["USE_DB_FUNCTIONS"]
-      User.update_all("home_tile = tile_for_point(cast(round(home_lat * #{GeoRecord::SCALE}) as integer), cast(round(home_lon * #{GeoRecord::SCALE}) as integer))")
-    else
-      User.all.each(&:save!)
-    end
+    User.all.each(&:save!)
   end
 
   def down