14 lines
230 B
Ruby
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
|