2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-17 19:47:38 +00:00
|
|
|
class AddSearchIndexToAccounts < ActiveRecord::Migration[5.0]
|
|
|
|
def up
|
2024-02-06 16:42:25 +00:00
|
|
|
execute <<~SQL.squish
|
|
|
|
CREATE INDEX search_index
|
|
|
|
ON accounts
|
|
|
|
USING gin(
|
|
|
|
(
|
|
|
|
setweight(to_tsvector('simple', accounts.display_name), 'A') ||
|
|
|
|
setweight(to_tsvector('simple', accounts.username), 'B') ||
|
|
|
|
setweight(to_tsvector('simple', coalesce(accounts.domain, '')), 'C')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
SQL
|
2017-03-17 19:47:38 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
remove_index :accounts, name: :search_index
|
|
|
|
end
|
|
|
|
end
|