summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200128210353_cleanup_optimistic_locking_nulls.rb
blob: 5c172159561b7b2e3275090845a58cc530c5b6f8 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true

# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class CleanupOptimisticLockingNulls < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  TABLES = %w(epics merge_requests issues).freeze
  BATCH_SIZE = 10_000

  def declare_class(table)
    Class.new(ActiveRecord::Base) do
      include EachBatch

      self.table_name = table
      self.inheritance_column = :_type_disabled # Disable STI
    end
  end

  def up
    TABLES.each do |table|
      add_concurrent_index table.to_sym, :lock_version, where: "lock_version IS NULL"

      queue_background_migration_jobs_by_range_at_intervals(
        declare_class(table).where(lock_version: nil),
        'CleanupOptimisticLockingNulls',
        2.minutes,
        batch_size: BATCH_SIZE,
        other_job_arguments: [table]
      )
    end
  end

  def down
    TABLES.each do |table|
      remove_concurrent_index table.to_sym, :lock_version, where: "lock_version IS NULL"
    end
  end
end