summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170628080858_migrate_stage_id_reference_in_background.rb
blob: 2eaa798d0aad2f310f5f9096552124013430181c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class MigrateStageIdReferenceInBackground < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
  end

  def down
    # noop
  end
end