mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-06 00:23:11 +00:00
17 lines
394 B
Elixir
17 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
|