discourse/db/migrate/20141118011735_correct_user...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
334 B
Ruby
Raw Normal View History

# frozen_string_literal: true
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