debian-mirror-gitlab/db/post_migrate/20191112023159_complete_pages_metadata_migration.rb
2020-01-01 13:55:28 +05:30

14 lines
230 B
Ruby

# frozen_string_literal: true
class CompletePagesMetadataMigration < ActiveRecord::Migration[5.2]
DOWNTIME = false
def up
Gitlab::BackgroundMigration.steal('MigratePagesMetadata')
end
def down
# no-op
end
end