pleroma/priv/repo/migrations/20170506222027_add_unique_i...

8 lines
148 B
Elixir
Raw Normal View History

2017-05-07 00:21:15 +02:00
defmodule Pleroma.Repo.Migrations.AddUniqueIndexToAPID do
use Ecto.Migration
def change do
create unique_index(:users, [:ap_id])
end
end