X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/783b5e3729228908d7404ae7404af1023501a906..eada36ff96d1b534457d98a25239ec468a7cba2c:/db/migrate/021_move_to_innodb.rb diff --git a/db/migrate/021_move_to_innodb.rb b/db/migrate/021_move_to_innodb.rb index 47ebecc83..4dac8410c 100644 --- a/db/migrate/021_move_to_innodb.rb +++ b/db/migrate/021_move_to_innodb.rb @@ -1,5 +1,3 @@ -require "migrate" - class MoveToInnodb < ActiveRecord::Migration[4.2] @conv_tables = %w[nodes ways way_tags way_nodes current_way_tags relation_members relations relation_tags current_relation_tags] @@ -11,11 +9,8 @@ class MoveToInnodb < ActiveRecord::Migration[4.2] @ver_tbl.each do |tbl| change_column tbl, "version", :bigint, :null => false - end - - @ver_tbl.each do |tbl| add_column "current_#{tbl}", "version", :bigint, :null => false - # As the initial version of all nodes, ways and relations is 0, we set the + # As the initial version of all nodes, ways and relations is 0, we set tehe # current version to something less so that we can update the version in # batches of 10000 tbl.classify.constantize.update_all(:version => -1)