[#923] Nickname & email selection for external registrations, option to connect to existing account.
This commit is contained in:
parent
40e9a04c31
commit
e17a9a1f66
8 changed files with 309 additions and 127 deletions
|
|
@ -2,7 +2,8 @@ defmodule Pleroma.Repo.Migrations.CreateRegistrations do
|
|||
use Ecto.Migration
|
||||
|
||||
def change do
|
||||
create table(:registrations) do
|
||||
create table(:registrations, primary_key: false) do
|
||||
add :id, :uuid, primary_key: true
|
||||
add :user_id, references(:users, type: :uuid, on_delete: :delete_all)
|
||||
add :provider, :string
|
||||
add :uid, :string
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue