summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20171024090137_drop_object_index.exs
blob: 29b4c93331f5d8e8b9014d8c8533266a9dda6102 (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