X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=priv%2Frepo%2Fmigrations%2F20211229075801_user_relationships_target_id_relationship_type_index.exs;h=f3eb8409f472283016ca442dd57ad3adfed89bc1;hb=a7bdefc208044ef2ad6ba05f646f1cfa1df8e06b;hp=fcefa6508d5642dac463a84f541be18a6379d492;hpb=0c7fb520bf7d6d164a2334a23066d1188b2ec0e1;p=akkoma diff --git a/priv/repo/migrations/20211229075801_user_relationships_target_id_relationship_type_index.exs b/priv/repo/migrations/20211229075801_user_relationships_target_id_relationship_type_index.exs index fcefa6508..f3eb8409f 100644 --- a/priv/repo/migrations/20211229075801_user_relationships_target_id_relationship_type_index.exs +++ b/priv/repo/migrations/20211229075801_user_relationships_target_id_relationship_type_index.exs @@ -2,8 +2,6 @@ defmodule Pleroma.Repo.Migrations.UserRelationshipsTargetIdRelationshipTypeIndex use Ecto.Migration def change do - create_if_not_exists( - index(:user_relationships, [:target_id, :relationship_type]) - ) + create_if_not_exists(index(:user_relationships, [:target_id, :relationship_type])) end end