mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:30:26 -06:00
12 lines
303 B
Ruby
12 lines
303 B
Ruby
class CorrectUsernameSearch < ActiveRecord::Migration[4.2]
|
|
def up
|
|
execute "update user_search_data
|
|
set search_data = TO_TSVECTOR('simple', username_lower || ' ' || lower(name))
|
|
from users
|
|
where users.id = user_search_data.user_id"
|
|
end
|
|
|
|
def down
|
|
end
|
|
end
|