summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220316112118_update_organizations_name_index_add_id.rb
blob: 4d78e78e9dbbc142027b1aa6fde6f418435daa4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

class UpdateOrganizationsNameIndexAddId < Gitlab::Database::Migration[1.0]
  disable_ddl_transaction!

  OLD_INDEX = 'index_customer_relations_organizations_on_unique_name_per_group'
  NEW_INDEX = 'index_organizations_on_unique_name_per_group'

  def up
    add_concurrent_index :customer_relations_organizations, 'group_id, lower(name), id', name: NEW_INDEX, unique: true

    remove_concurrent_index_by_name :customer_relations_organizations, OLD_INDEX
  end

  def down
    add_concurrent_index :customer_relations_organizations, 'group_id, lower(name)', name: OLD_INDEX, unique: true

    remove_concurrent_index_by_name :customer_relations_organizations, NEW_INDEX
  end
end