[#477] User trigram index adjustment.
This commit is contained in:
parent
ed8f55ab8e
commit
79e44042bc
2 changed files with 14 additions and 1 deletions
|
|
@ -0,0 +1,13 @@
|
|||
defmodule Pleroma.Repo.Migrations.FixUserTrigramIndex do
|
||||
use Ecto.Migration
|
||||
|
||||
def up do
|
||||
drop_if_exists index(:users, [], name: :users_trigram_index)
|
||||
create index(:users, ["(trim(nickname || ' ' || name)) gist_trgm_ops"], name: :users_trigram_index, using: :gist)
|
||||
end
|
||||
|
||||
def down do
|
||||
drop_if_exists index(:users, [], name: :users_trigram_index)
|
||||
create index(:users, ["(nickname || name) gist_trgm_ops"], name: :users_trigram_index, using: :gist)
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue