From 4d9ecc2b9edf27b2e74416bb551d92415f5b8ba3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Thu, 6 Oct 2022 00:11:25 +0200 Subject: [PATCH] Fix down() in AddUpdateToNotificationsEnum migration for Rebased MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- .../20220605185734_add_update_to_notifications_enum.exs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/priv/repo/migrations/20220605185734_add_update_to_notifications_enum.exs b/priv/repo/migrations/20220605185734_add_update_to_notifications_enum.exs index 0656c885f9..63be931f3d 100644 --- a/priv/repo/migrations/20220605185734_add_update_to_notifications_enum.exs +++ b/priv/repo/migrations/20220605185734_add_update_to_notifications_enum.exs @@ -10,7 +10,7 @@ def up do |> execute() end - # 20210717000000_add_poll_to_notifications_enum.exs + # 20220319000000_add_status_to_notifications_enum.exs def down do alter table(:notifications) do modify(:type, :string) @@ -37,7 +37,8 @@ def down do 'reblog', 'favourite', 'pleroma:report', - 'poll' + 'poll', + 'status' ) """ |> execute()