about summary refs log tree commit diff
path: root/db/migrate/20170606113804_change_tag_search_index_to_btree.rb
blob: 979df2e74422857bac60ee50e8c114cfe93de708 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class ChangeTagSearchIndexToBtree < ActiveRecord::Migration[5.1]
  def up
    remove_index :tags, name: :hashtag_search_index
    execute 'CREATE INDEX hashtag_search_index ON tags (name text_pattern_ops);'
  end

  def down
    remove_index :tags, name: :hashtag_search_index
    execute 'CREATE INDEX hashtag_search_index ON tags USING gin(to_tsvector(\'simple\', tags.name));'
  end
end