debian-mirror-gitlab/db/post_migrate/20210302150310_schedule_migrate_pages_to_zip_storage.rb
2022-07-23 20:15:48 +02:00

18 lines
311 B
Ruby

# 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