summaryrefslogtreecommitdiff
path: root/db/post_migrate/20191112023159_complete_pages_metadata_migration.rb
blob: 6468eef8cc14d28fa89f4ba7991f50d8f85d72f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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