logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 6be16b8617a8ecbb820c43826cae1469386aac1a
parent: b05fbc890e17786c0332717a5b4b583c9656e608
Author: kaniini <ariadne@dereferenced.org>
Date:   Sun, 27 Oct 2019 05:28:32 +0000

Merge branch 'refactor/db-not-null-constraints-for-conversation_participation_recipient_ships' into 'develop'

Add NOT NULL constraints for conversation_participation_recipient_ships table

See merge request pleroma/pleroma!1893

Diffstat:

Apriv/repo/migrations/20191026190712_set_not_null_for_conversation_participation_recipient_ships.exs17+++++++++++++++++
1 file changed, 17 insertions(+), 0 deletions(-)

diff --git a/priv/repo/migrations/20191026190712_set_not_null_for_conversation_participation_recipient_ships.exs b/priv/repo/migrations/20191026190712_set_not_null_for_conversation_participation_recipient_ships.exs @@ -0,0 +1,17 @@ +defmodule Pleroma.Repo.Migrations.SetNotNullForConversationParticipationRecipientShips do + use Ecto.Migration + + # modify/3 function will require index recreation, so using execute/1 instead + + def up do + execute("ALTER TABLE conversation_participation_recipient_ships + ALTER COLUMN user_id SET NOT NULL, + ALTER COLUMN participation_id SET NOT NULL") + end + + def down do + execute("ALTER TABLE conversation_participation_recipient_ships + ALTER COLUMN user_id DROP NOT NULL, + ALTER COLUMN participation_id DROP NOT NULL") + end +end