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()