summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20171130135819_add_local_index_to_user.exs
blob: 25716be213693c2036862498a340e4a7f7fa1266 (plain)
1
2
3
4
5
6
7
defmodule Pleroma.Repo.Migrations.AddLocalIndexToUser do
  use Ecto.Migration

  def change do
    create index(:users, [:local])
  end
end