summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20170620095947_remove_activities_index.exs
blob: e7d41eac449a50bd7315aae9bd926b8aaee66338 (plain)
1
2
3
4
5
6
7
defmodule Pleroma.Repo.Migrations.RemoveActivitiesIndex do
  use Ecto.Migration

  def change do
    drop_if_exists index(:activities, [:data])
  end
end