18 lines
737 B
Elixir
18 lines
737 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Repo.Migrations.CreateConversationParticipationRecipientShips do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create_if_not_exists table(:conversation_participation_recipient_ships) do
|
|
add(:user_id, references(:users, type: :uuid, on_delete: :delete_all))
|
|
add(:participation_id, references(:conversation_participations, on_delete: :delete_all))
|
|
end
|
|
|
|
create_if_not_exists(index(:conversation_participation_recipient_ships, [:user_id]))
|
|
create_if_not_exists(index(:conversation_participation_recipient_ships, [:participation_id]))
|
|
end
|
|
end
|