Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20201015073808_schedule_blocked_by_links_replacement.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd8cbb5713665736c4ec2868b40141bd47c26cdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true

class ScheduleBlockedByLinksReplacement < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  INTERVAL = 2.minutes
  # at the time of writing there were 47600 blocked_by issues:
  # estimated time is 48 batches * 2 minutes -> 100 minutes
  BATCH_SIZE = 1000
  MIGRATION = 'ReplaceBlockedByLinks'

  disable_ddl_transaction!

  class IssueLink < ActiveRecord::Base
    include EachBatch

    self.table_name = 'issue_links'
  end

  def up
    # no-op
    # superseded by db/post_migrate/20201102073808_schedule_blocked_by_links_replacement_second_try.rb
  end

  def down
  end
end