pleroma/priv/repo/migrations/20180530123448_add_list_fol...

8 lines
158 B
Elixir
Raw Normal View History

2018-05-30 08:33:37 -05:00
defmodule Pleroma.Repo.Migrations.AddListFollowIndex do
use Ecto.Migration
def change do
2019-10-08 07:16:39 -05:00
create_if_not_exists(index(:lists, [:following]))
2018-05-30 08:33:37 -05:00
end
end