summaryrefslogtreecommitdiff
path: root/db/migrate/20200221023320_add_index_on_pages_domain_on_domain_lowercase.rb
blob: 53f8f5e7f81953f036809e8652baaa5132206db1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class AddIndexOnPagesDomainOnDomainLowercase < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  INDEX_NAME = 'index_pages_domains_on_domain_lowercase'

  disable_ddl_transaction!

  def up
    add_concurrent_index :pages_domains, 'LOWER(domain)', name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :pages_domains, INDEX_NAME
  end
end