summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200608205813_set_lock_version_to_not_null.rb
blob: 69f43a8decf3948dae751c6aa68f8b5996a5519e (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
# frozen_string_literal: true

class SetLockVersionToNotNull < ActiveRecord::Migration[6.0]
  DOWNTIME = false

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

  disable_ddl_transaction!

  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|
      declare_class(table).where(lock_version: nil).each_batch(of: BATCH_SIZE) do |batch|
        batch.update_all(lock_version: 0)
      end
    end
  end

  def down
    # Nothing to do...
  end
end