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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20210601073400_fix_total_stage_in_vsa.rb')
-rw-r--r--db/post_migrate/20210601073400_fix_total_stage_in_vsa.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/db/post_migrate/20210601073400_fix_total_stage_in_vsa.rb b/db/post_migrate/20210601073400_fix_total_stage_in_vsa.rb
deleted file mode 100644
index 85302ee1d20..00000000000
--- a/db/post_migrate/20210601073400_fix_total_stage_in_vsa.rb
+++ /dev/null
@@ -1,27 +0,0 @@
-# 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