X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/6ebb21b66020ba845abd9fda408bb204d326e0de..d5efa4c357c1f39181f9af96024eaacbb6bd328b:/db/migrate/20180204153242_tile_users.rb diff --git a/db/migrate/20180204153242_tile_users.rb b/db/migrate/20180204153242_tile_users.rb index 61dbcb4ea..53cea91cf 100644 --- a/db/migrate/20180204153242_tile_users.rb +++ b/db/migrate/20180204153242_tile_users.rb @@ -1,16 +1,12 @@ class TileUsers < ActiveRecord::Migration[5.1] - class User < ActiveRecord::Base + 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