summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20210222183840_remove_hashtags_objects_duplicate_index.exs
blob: 4ea7ebe30bd615e15c019ccc7f75e6c441f2d859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Repo.Migrations.RemoveHashtagsObjectsDuplicateIndex do
  use Ecto.Migration

  @moduledoc "Removes `hashtags_objects_hashtag_id_object_id_index` index (duplicate of PK index)."

  def up do
    drop_if_exists(unique_index(:hashtags_objects, [:hashtag_id, :object_id]))
  end

  def down, do: nil
end