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

20170502140503_create_index_ci_builds_auto_canceled_by_id.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5148f6fdb802f6247433b37c75a6edecb45e2af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
class CreateIndexCiBuildsAutoCanceledById < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    # MySQL would already have the index
    unless index_exists?(:ci_builds, :auto_canceled_by_id)
      add_concurrent_index(:ci_builds, :auto_canceled_by_id)
    end
  end

  def down
    # We cannot remove index for MySQL because it's needed for foreign key
    if Gitlab::Database.postgresql?
      remove_concurrent_index(:ci_builds, :auto_canceled_by_id)
    end
  end
end