gitlab-org--gitlab-foss/db/post_migrate/20191112023159_complete_pag...

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