summaryrefslogtreecommitdiff
path: root/db/post_migrate/20180420080616_schedule_stages_index_migration.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20180420080616_schedule_stages_index_migration.rb')
-rw-r--r--db/post_migrate/20180420080616_schedule_stages_index_migration.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/db/post_migrate/20180420080616_schedule_stages_index_migration.rb b/db/post_migrate/20180420080616_schedule_stages_index_migration.rb
deleted file mode 100644
index 2d72e75393f..00000000000
--- a/db/post_migrate/20180420080616_schedule_stages_index_migration.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-class ScheduleStagesIndexMigration < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
- MIGRATION = 'MigrateStageIndex'.freeze
- BATCH_SIZE = 10000
-
- disable_ddl_transaction!
-
- class Stage < ActiveRecord::Base
- include EachBatch
- self.table_name = 'ci_stages'
- end
-
- def up
- disable_statement_timeout do
- Stage.all.tap do |relation|
- queue_background_migration_jobs_by_range_at_intervals(relation,
- MIGRATION,
- 5.minutes,
- batch_size: BATCH_SIZE)
- end
- end
- end
-
- def down
- # noop
- end
-end