akkoma/priv/repo/migrations/20190710125051_add_following_address_index_to_user.exs
2019-07-10 17:42:18 +03:00

9 lines
216 B
Elixir

defmodule Pleroma.Repo.Migrations.AddFollowingAddressIndexToUser do
use Ecto.Migration
@disable_ddl_transaction true
def change do
create(index(:users, [:following_address], concurrently: true))
end
end