summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190801154554_create_conversation_participation_recipient_ships.exs
blob: 75e4b181a2bcf42d36c34157ab52fd79d8757475 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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