summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170621102400_add_stage_id_index_to_builds.rb
blob: ac61b5c84a838d06b2e89d5c86e3547a6b71c253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class AddStageIdIndexToBuilds < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  ##
  # Improved in 20170703102400_add_stage_id_foreign_key_to_builds.rb
  #

  def up
    # noop
  end

  def down
    # noop
  end
end