summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200915095704_remove_background_jobs.exs
blob: 0881aa3a0ef3943e96a48578fa51738423410187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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.RemoveBackgroundJobs do
  use Ecto.Migration

  import Ecto.Query, only: [from: 2]

  def up do
    from(j in "oban_jobs",
      where:
        j.queue == ^"background" and
          fragment("?->>'op'", j.args) in ^[
            "fetch_data_for_activity",
            "media_proxy_prefetch",
            "media_proxy_preload"
          ] and
          j.worker == ^"Pleroma.Workers.BackgroundWorker",
      select: [:id]
    )
    |> Pleroma.Repo.delete_all()
  end

  def down, do: :ok
end