about summary refs log tree commit diff
path: root/db/migrate/20210421121431_add_case_insensitive_btree_index_to_tags.rb
blob: ed359e8cd9ec8d584074f52e87e540fca5cc9908 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
class AddCaseInsensitiveBtreeIndexToTags < ActiveRecord::Migration[5.2]
  disable_ddl_transaction!

  def up
    safety_assured { execute 'CREATE UNIQUE INDEX CONCURRENTLY index_tags_on_name_lower_btree ON tags (lower(name) text_pattern_ops)' }
    remove_index :tags, name: 'index_tags_on_name_lower'
  end

  def down
    safety_assured { execute 'CREATE UNIQUE INDEX CONCURRENTLY index_tags_on_name_lower ON tags (lower(name))' }
    remove_index :tags, name: 'index_tags_on_name_lower_btree'
  end
end