0
0
Fork 0

Make tag search case insensitive again (#4184)

This commit is contained in:
unarist 2017-07-14 02:31:33 +09:00 committed by Eugen Rochko
parent c29c20ab3c
commit c2753fdfb4
4 changed files with 23 additions and 3 deletions

View file

@ -0,0 +1,11 @@
class MakeTagSearchCaseInsensitive < ActiveRecord::Migration[5.1]
def up
remove_index :tags, name: :hashtag_search_index
execute 'CREATE INDEX hashtag_search_index ON tags (lower(name) text_pattern_ops);'
end
def down
remove_index :tags, name: :hashtag_search_index
execute 'CREATE INDEX hashtag_search_index ON tags (name text_pattern_ops);'
end
end