merge develop
[akkoma] / priv / repo / migrations / 20190710125051_add_following_address_index_to_user.exs
1 defmodule Pleroma.Repo.Migrations.AddFollowingAddressIndexToUser do
2 use Ecto.Migration
3
4 @disable_ddl_transaction true
5 def change do
6 create(index(:users, [:following_address], concurrently: true))
7 end
8 end