2019-01-15 09:04:54 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateUserFtsIndex do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-10-08 12:16:39 +00:00
|
|
|
create_if_not_exists(
|
|
|
|
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
|
|
|
|
)
|
|
|
|
)
|
2019-01-15 09:04:54 +00:00
|
|
|
end
|
|
|
|
end
|