summaryrefslogtreecommitdiff
path: root/db/migrate/20180417090132_add_index_constraints_to_internal_id_table.rb
blob: ac6bb1a8cab0dd1e1971add6bc9a9a89ff43679e (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
36
37
38
39
40
41
class AddIndexConstraintsToInternalIdTable < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :internal_ids, [:usage, :namespace_id], unique: true, where: 'namespace_id IS NOT NULL'

    replace_index(:internal_ids, [:usage, :project_id], name: 'index_internal_ids_on_usage_and_project_id') do
      add_concurrent_index :internal_ids, [:usage, :project_id], unique: true, where: 'project_id IS NOT NULL'
    end

    add_concurrent_foreign_key :internal_ids, :namespaces, column: :namespace_id, on_delete: :cascade
  end

  def down
    remove_concurrent_index :internal_ids, [:usage, :namespace_id]

    replace_index(:internal_ids, [:usage, :project_id], name: 'index_internal_ids_on_usage_and_project_id') do
      add_concurrent_index :internal_ids, [:usage, :project_id], unique: true
    end

    remove_foreign_key :internal_ids, column: :namespace_id
  end

  private

  def replace_index(table, columns, name:)
    temporary_name = "#{name}_old"

    if index_exists?(table, columns, name: name)
      rename_index table, name, temporary_name
    end

    yield

    remove_concurrent_index_by_name table, temporary_name
  end
end