debian-mirror-gitlab/lib/gitlab/background_migration/cleanup_concurrent_schema_change.rb

57 lines
1.6 KiB
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
# frozen_string_literal: true
module Gitlab
module BackgroundMigration
2020-07-28 23:09:34 +05:30
# Base class for background migration for rename/type changes.
2018-11-08 19:23:39 +05:30
class CleanupConcurrentSchemaChange
include Database::MigrationHelpers
# table - The name of the table the migration is performed for.
# old_column - The name of the old (to drop) column.
# new_column - The name of the new column.
def perform(table, old_column, new_column)
2020-07-28 23:09:34 +05:30
return unless column_exists?(table, new_column) && column_exists?(table, old_column)
2018-11-08 19:23:39 +05:30
rows_to_migrate = define_model_for(table)
.where(new_column => nil)
.where
.not(old_column => nil)
if rows_to_migrate.any?
BackgroundMigrationWorker.perform_in(
RESCHEDULE_DELAY,
self.class.name,
[table, old_column, new_column]
)
else
cleanup_concurrent_schema_change(table, old_column, new_column)
end
end
2020-07-28 23:09:34 +05:30
def cleanup_concurrent_schema_change(_table, _old_column, _new_column)
raise NotImplementedError
end
2018-11-08 19:23:39 +05:30
# These methods are necessary so we can re-use the migration helpers in
# this class.
def connection
ActiveRecord::Base.connection
end
def method_missing(name, *args, &block)
connection.__send__(name, *args, &block) # rubocop: disable GitlabSecurity/PublicSend
end
def respond_to_missing?(*args)
connection.respond_to?(*args) || super
end
def define_model_for(table)
Class.new(ActiveRecord::Base) do
self.table_name = table
end
end
end
end
end