0cbfb71f4fbb317541073bc4294b3dcf3d045316
[akkoma] / 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