diff options
author | Haelwenn (lanodan) Monnier <contact@hacktivis.me> | 2024-05-31 07:19:48 +0200 |
---|---|---|
committer | Mark Felder <feld@feld.me> | 2024-06-12 15:18:47 -0400 |
commit | cb91dab75f70ade96028c32e270a27352c41714e (patch) | |
tree | 00179c26c4cf1a614edad69d71b9f4a7c53a81f8 /priv/repo/migrations/20190118074940_fix_user_trigram_index.exs | |
parent | f47a1246985d6ce69ceca4104e43f630f1f33610 (diff) | |
download | pleroma-cb91dab75f70ade96028c32e270a27352c41714e.tar.gz pleroma-cb91dab75f70ade96028c32e270a27352c41714e.zip |
Switch formatting checks to Elixir 1.15
Diffstat (limited to 'priv/repo/migrations/20190118074940_fix_user_trigram_index.exs')
-rw-r--r-- | priv/repo/migrations/20190118074940_fix_user_trigram_index.exs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/priv/repo/migrations/20190118074940_fix_user_trigram_index.exs b/priv/repo/migrations/20190118074940_fix_user_trigram_index.exs index b0f5238a0..3958ea262 100644 --- a/priv/repo/migrations/20190118074940_fix_user_trigram_index.exs +++ b/priv/repo/migrations/20190118074940_fix_user_trigram_index.exs @@ -20,7 +20,10 @@ defmodule Pleroma.Repo.Migrations.FixUserTrigramIndex do drop_if_exists(index(:users, [], name: :users_trigram_index)) create_if_not_exists( - index(:users, ["(nickname || name) gist_trgm_ops"], name: :users_trigram_index, using: :gist) + index(:users, ["(nickname || name) gist_trgm_ops"], + name: :users_trigram_index, + using: :gist + ) ) end end |