From 0366bb284c32f6bec747845be50dcf8adc333712 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Mon, 16 Sep 2024 11:42:09 +0200 Subject: [PATCH] Fix migration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- ..._report_notification_type_to_admin_report.exs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/priv/repo/migrations/20240912000000_rename_pleroma_report_notification_type_to_admin_report.exs b/priv/repo/migrations/20240912000000_rename_pleroma_report_notification_type_to_admin_report.exs index d06addf067..52cf3fac43 100644 --- a/priv/repo/migrations/20240912000000_rename_pleroma_report_notification_type_to_admin_report.exs +++ b/priv/repo/migrations/20240912000000_rename_pleroma_report_notification_type_to_admin_report.exs @@ -36,10 +36,10 @@ def up do 'poll', 'status', 'update', - 'pleroma:participation_accepted' - 'pleroma:participation_request' - 'pleroma:event_reminder' - 'pleroma:event_update' + 'pleroma:participation_accepted', + 'pleroma:participation_request', + 'pleroma:event_reminder', + 'pleroma:event_update', 'bite' ) """ @@ -83,10 +83,10 @@ def down do 'poll', 'status', 'update', - 'pleroma:participation_accepted' - 'pleroma:participation_request' - 'pleroma:event_reminder' - 'pleroma:event_update' + 'pleroma:participation_accepted', + 'pleroma:participation_request', + 'pleroma:event_reminder', + 'pleroma:event_update', 'bite' ) """