summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190115085500_create_user_fts_index.exs
blob: 0c0c512d33a28f62041b5f78844d5ac7e808360d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
defmodule Pleroma.Repo.Migrations.CreateUserFtsIndex do
  use Ecto.Migration

  def change do
    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
      )
    )
  end
end