summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190801154554_create_conversation_participation_recipient_ships.exs
blob: ad176a0e0f18bef61202b5baac7d9143e9fea125 (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-2023 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