mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 03:18:23 +00: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
|