summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210302150310_schedule_migrate_pages_to_zip_storage.rb
blob: 87c7d373329882a2ee6b77dcfb71df4e5e8105fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

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

  DOWNTIME = false

  MIGRATION = 'MigratePagesToZipStorage'
  BATCH_SIZE = 10
  BATCH_TIME = 5.minutes

  disable_ddl_transaction!

  def up
    # no-op
  end
end