First
[anni] / priv / repo / migrations / 20210222183840_remove_hashtags_objects_duplicate_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.RemoveHashtagsObjectsDuplicateIndex do
6   use Ecto.Migration
7
8   @moduledoc "Removes `hashtags_objects_hashtag_id_object_id_index` index (duplicate of PK index)."
9
10   def up do
11     drop_if_exists(unique_index(:hashtags_objects, [:hashtag_id, :object_id]))
12   end
13
14   def down, do: nil
15 end