1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 06:38:48 +00:00
akkoma/priv/repo/migrations/20170506222027_add_unique_index_to_apid.exs

8 lines
163 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
2019-10-08 15:16:39 +03:00
create_if_not_exists(unique_index(:users, [:ap_id]))
2017-05-07 00:21:15 +02:00
end
end