mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 14:16:05 +01:00
7 lines
227 B
Elixir
7 lines
227 B
Elixir
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
|