summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20171024090137_drop_object_index.exs
blob: d417577aeb12f336794f4774ba3bce3347ed1898 (plain)
1
2
3
4
5
6
7
defmodule Pleroma.Repo.Migrations.DropObjectIndex do
  use Ecto.Migration

  def change do
    drop_if_exists(index(:objects, [:data], using: :gin))
  end
end