summaryrefslogtreecommitdiff
path: root/db/migrate/20170703102400_add_stage_id_foreign_key_to_builds.rb
blob: 68b947583d3cb9ecce7ef840eff8e79bd6c604a7 (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
28
29
30
31
32
33
34
35
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, :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, :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

  private

  def foreign_key_exists?(table, column)
    foreign_keys(:ci_builds).any? do |key|
      key.options[:column] == column.to_s
    end
  end
end