summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20180516154905_create_user_trigram_index.exs
blob: 58622a87e538c7bb125a7d32b6f69d84d2b226bf (plain)
1
2
3
4
5
6
7
defmodule Pleroma.Repo.Migrations.CreateUserTrigramIndex do
  use Ecto.Migration

  def change do
    create_if_not_exists index(:users, ["(nickname || name) gist_trgm_ops"], name: :users_trigram_index, using: :gist)
  end
end