logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

20210222183840_remove_hashtags_objects_duplicate_index.exs (477B)


  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. defmodule Pleroma.Repo.Migrations.RemoveHashtagsObjectsDuplicateIndex do
  5. use Ecto.Migration
  6. @moduledoc "Removes `hashtags_objects_hashtag_id_object_id_index` index (duplicate of PK index)."
  7. def up do
  8. drop_if_exists(unique_index(:hashtags_objects, [:hashtag_id, :object_id]))
  9. end
  10. def down, do: nil
  11. end