debian-mirror-gitlab/db/post_migrate/20210823113259_steal_merge_request_diff_commit_users_migration.rb
2021-11-11 11:23:49 +05:30

29 lines
839 B
Ruby

# frozen_string_literal: true
# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class StealMergeRequestDiffCommitUsersMigration < ActiveRecord::Migration[6.1]
include Gitlab::Database::MigrationHelpers
disable_ddl_transaction!
def up
job = Gitlab::Database::BackgroundMigrationJob
.for_migration_class('MigrateMergeRequestDiffCommitUsers')
.pending
.last
return unless job
# We schedule in one hour so we don't end up running the migrations while a
# deployment is still wrapping up. Not that that really matters, but it
# prevents from too much happening during a deployment window.
migrate_in(1.hour, 'StealMigrateMergeRequestDiffCommitUsers', job.arguments)
end
def down
# no-op
end
end