summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210601073400_fix_total_stage_in_vsa.rb
blob: 85302ee1d20221fa4be97b738b2a6357d037f1a0 (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
# frozen_string_literal: true

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

  disable_ddl_transaction!

  TOTAL_STAGE = 'Total'

  class GroupStage < ActiveRecord::Base
    include EachBatch

    self.table_name = 'analytics_cycle_analytics_group_stages'
  end

  def up
    GroupStage.reset_column_information

    GroupStage.each_batch(of: 100) do |relation|
      relation.where(name: TOTAL_STAGE, custom: false).update_all(custom: true)
    end
  end

  def down
    # no-op
  end
end