akkoma/priv/repo/migrations/20180530123448_add_list_follow_index.exs
2019-10-08 15:16:39 +03:00

8 lines
158 B
Elixir

defmodule Pleroma.Repo.Migrations.AddListFollowIndex do
use Ecto.Migration
def change do
create_if_not_exists(index(:lists, [:following]))
end
end