1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-30 00:20:34 +01:00
pleroma/priv/repo/migrations/20180516154905_create_user_trigram_index.exs

8 lines
213 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.CreateUserTrigramIndex do
use Ecto.Migration
def change do
create index(:users, ["(nickname || name) gist_trgm_ops"], name: :users_trigram_index, using: :gist)
end
end