logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

20191026190712_set_not_null_for_conversation_participation_recipient_ships.exs (709B)


  1. # Pleroma: A lightweight social networking server
  2. # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
  3. # SPDX-License-Identifier: AGPL-3.0-only
  4. defmodule Pleroma.Repo.Migrations.SetNotNullForConversationParticipationRecipientShips do
  5. use Ecto.Migration
  6. # modify/3 function will require index recreation, so using execute/1 instead
  7. def up do
  8. execute("ALTER TABLE conversation_participation_recipient_ships
  9. ALTER COLUMN user_id SET NOT NULL,
  10. ALTER COLUMN participation_id SET NOT NULL")
  11. end
  12. def down do
  13. execute("ALTER TABLE conversation_participation_recipient_ships
  14. ALTER COLUMN user_id DROP NOT NULL,
  15. ALTER COLUMN participation_id DROP NOT NULL")
  16. end
  17. end