2018-05-16 09:55:20 -06:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateUserTrigramIndex do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-10-08 06:16:39 -06:00
|
|
|
create_if_not_exists(
|
2023-08-01 04:43:50 -06:00
|
|
|
index(:users, ["(nickname || name) gist_trgm_ops"],
|
|
|
|
name: :users_trigram_index,
|
|
|
|
using: :gist
|
|
|
|
)
|
2019-10-08 06:16:39 -06:00
|
|
|
)
|
2018-05-16 09:55:20 -06:00
|
|
|
end
|
|
|
|
end
|