mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-04 16:09:36 +00:00
17 lines
494 B
Elixir
17 lines
494 B
Elixir
defmodule Pleroma.Repo.Migrations.CreateUserFtsIndex do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create index(
|
|
:users,
|
|
[
|
|
"""
|
|
(setweight(to_tsvector('simple', regexp_replace(nickname, '\\W', ' ', 'g')), 'A') ||
|
|
setweight(to_tsvector('simple', regexp_replace(coalesce(name, ''), '\\W', ' ', 'g')), 'B'))
|
|
"""
|
|
],
|
|
name: :users_fts_index,
|
|
using: :gin
|
|
)
|
|
end
|
|
end
|