pleroma/priv/repo/migrations/20190118074940_fix_user_trigram_index.exs

27 lines
729 B
Elixir
Raw Normal View History

2022-02-26 06:11:42 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2022-02-26 06:11:42 +00:00
# SPDX-License-Identifier: AGPL-3.0-only
2019-01-18 07:57:42 +00:00
defmodule Pleroma.Repo.Migrations.FixUserTrigramIndex do
use Ecto.Migration
def up do
drop_if_exists(index(:users, [], name: :users_trigram_index))
2019-07-01 01:08:07 +00:00
create_if_not_exists(
index(:users, ["(trim(nickname || ' ' || coalesce(name, ''))) gist_trgm_ops"],
name: :users_trigram_index,
using: :gist
)
)
2019-01-18 07:57:42 +00:00
end
def down do
drop_if_exists(index(:users, [], name: :users_trigram_index))
2019-07-01 01:08:07 +00:00
create_if_not_exists(
index(:users, ["(nickname || name) gist_trgm_ops"], name: :users_trigram_index, using: :gist)
)
2019-01-18 07:57:42 +00:00
end
end