summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20180530123448_add_list_follow_index.exs
blob: 86b8de30a3e54e71b2c6d0eb428ad0ce469de4ba (plain)
1
2
3
4
5
6
7
defmodule Pleroma.Repo.Migrations.AddListFollowIndex do
  use Ecto.Migration

  def change do
    create_if_not_exists index(:lists, [:following])
  end
end