Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20170703102400_add_stage_id_foreign_key_to_builds.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a89d348b127fe30927235a7642e0b8e395b94d6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class AddStageIdForeignKeyToBuilds < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    unless index_exists?(:ci_builds, :stage_id)
      add_concurrent_index(:ci_builds, :stage_id)
    end

    unless foreign_key_exists?(:ci_builds, :ci_stages, column: :stage_id)
      add_concurrent_foreign_key(:ci_builds, :ci_stages, column: :stage_id, on_delete: :cascade)
    end
  end

  def down
    if foreign_key_exists?(:ci_builds, column: :stage_id)
      remove_foreign_key(:ci_builds, column: :stage_id)
    end

    if index_exists?(:ci_builds, :stage_id)
      remove_concurrent_index(:ci_builds, :stage_id)
    end
  end
end