summaryrefslogtreecommitdiff
path: root/db/post_migrate/20170621102400_add_stage_id_index_to_builds.rb
blob: cca9b488547d8d1e8301cea709682586644623f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class AddStageIdIndexToBuilds < ActiveRecord::Migration[4.2]
  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