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/20201109114603_schedule_remove_inaccessible_epic_todos.rb')
-rw-r--r--db/post_migrate/20201109114603_schedule_remove_inaccessible_epic_todos.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/db/post_migrate/20201109114603_schedule_remove_inaccessible_epic_todos.rb b/db/post_migrate/20201109114603_schedule_remove_inaccessible_epic_todos.rb
deleted file mode 100644
index 13d12675a28..00000000000
--- a/db/post_migrate/20201109114603_schedule_remove_inaccessible_epic_todos.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-# frozen_string_literal: true
-
-class ScheduleRemoveInaccessibleEpicTodos < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
- INTERVAL = 2.minutes
- BATCH_SIZE = 10
- MIGRATION = 'RemoveInaccessibleEpicTodos'
-
- disable_ddl_transaction!
-
- class Epic < ActiveRecord::Base
- include EachBatch
- end
-
- def up
- return unless Gitlab.ee?
-
- relation = Epic.where(confidential: true)
-
- queue_background_migration_jobs_by_range_at_intervals(
- relation, MIGRATION, INTERVAL, batch_size: BATCH_SIZE)
- end
-
- def down
- # no-op
- end
-end