2019-03-18 15:23:38 +01:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateRegistrations do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-03-20 08:35:31 +01:00
|
|
|
create table(:registrations, primary_key: false) do
|
|
|
|
add :id, :uuid, primary_key: true
|
2019-03-18 15:23:38 +01:00
|
|
|
add :user_id, references(:users, type: :uuid, on_delete: :delete_all)
|
|
|
|
add :provider, :string
|
|
|
|
add :uid, :string
|
|
|
|
add :info, :map, default: %{}
|
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
|
|
|
create unique_index(:registrations, [:provider, :uid])
|
2019-03-27 14:20:50 +01:00
|
|
|
create unique_index(:registrations, [:user_id, :provider, :uid])
|
2019-03-18 15:23:38 +01:00
|
|
|
end
|
|
|
|
end
|