debian-mirror-gitlab/db/post_migrate/20210302150310_schedule_migrate_pages_to_zip_storage.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
311 B
Ruby
Raw Normal View History

2021-04-29 21:17:54 +05:30
# 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
2022-07-23 23:45:48 +05:30
# no-op
2021-04-29 21:17:54 +05:30
end
end