mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-20 06:36:07 +01:00
16 lines
394 B
Elixir
16 lines
394 B
Elixir
defmodule Pleroma.Repo.Migrations.CreateRegistrations do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create table(:registrations) do
|
|
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])
|
|
end
|
|
end
|