Make tag search case insensitive again (#4184)
This commit is contained in:
@ -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
|
@ -10,7 +10,7 @@
|
||||
#
|
||||
# It's strongly recommended that you check this file into your version control system.
|
||||
|
||||
ActiveRecord::Schema.define(version: 20170711225116) do
|
||||
ActiveRecord::Schema.define(version: 20170713112503) do
|
||||
|
||||
# These are extensions that must be enabled in order to support this database
|
||||
enable_extension "plpgsql"
|
||||
@ -332,7 +332,7 @@ ActiveRecord::Schema.define(version: 20170711225116) do
|
||||
t.string "name", default: "", null: false
|
||||
t.datetime "created_at", null: false
|
||||
t.datetime "updated_at", null: false
|
||||
t.index "name text_pattern_ops", name: "hashtag_search_index"
|
||||
t.index "lower((name)::text) text_pattern_ops", name: "hashtag_search_index"
|
||||
t.index ["name"], name: "index_tags_on_name", unique: true
|
||||
end
|
||||
|
||||
|
Reference in New Issue
Block a user