summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200906072147_remove_cron_stats_worker_from_oban_config.exs
blob: 8b6501c4e716f76ff9248a5cd5d9ce1ac5e7e2c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Repo.Migrations.RemoveCronStatsWorkerFromObanConfig do
  use Ecto.Migration

  def change do
    with %Pleroma.ConfigDB{} = config <-
           Pleroma.ConfigDB.get_by_params(%{group: :pleroma, key: Oban}),
         crontab when is_list(crontab) <- config.value[:crontab],
         index when is_integer(index) <-
           Enum.find_index(crontab, fn {_, worker} ->
             worker == Pleroma.Workers.Cron.StatsWorker
           end) do
      updated_value = Keyword.put(config.value, :crontab, List.delete_at(crontab, index))

      config
      |> Ecto.Changeset.change(value: updated_value)
      |> Pleroma.Repo.update()
    end
  end
end