f2290c5a65ee43d7a37c5b12b0486dbaca487a7f
[anni] / priv / repo / migrations / 20211229075801_user_relationships_target_id_relationship_type_index.exs
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Repo.Migrations.UserRelationshipsTargetIdRelationshipTypeIndex do
6   use Ecto.Migration
7
8   def change do
9     create_if_not_exists(index(:user_relationships, [:target_id, :relationship_type]))
10   end
11 end