2022-02-26 06:11:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-02 20:38:50 +00:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2022-02-26 06:11:42 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2019-03-18 14:23:38 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.CreateRegistrations do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
2019-07-01 01:08:07 +00:00
|
|
|
create_if_not_exists table(:registrations, primary_key: false) do
|
2019-10-08 12:16:39 +00:00
|
|
|
add(:id, :uuid, primary_key: true)
|
|
|
|
add(:user_id, references(:users, type: :uuid, on_delete: :delete_all))
|
|
|
|
add(:provider, :string)
|
|
|
|
add(:uid, :string)
|
|
|
|
add(:info, :map, default: %{})
|
2019-03-18 14:23:38 +00:00
|
|
|
|
|
|
|
timestamps()
|
|
|
|
end
|
|
|
|
|
2019-10-08 12:16:39 +00:00
|
|
|
create_if_not_exists(unique_index(:registrations, [:provider, :uid]))
|
|
|
|
create_if_not_exists(unique_index(:registrations, [:user_id, :provider, :uid]))
|
2019-03-18 14:23:38 +00:00
|
|
|
end
|
|
|
|
end
|