2022-02-26 06:11:42 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-02 20:38:50 +00:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2022-02-26 06:11:42 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-09-10 07:54:57 +00:00
|
|
|
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
|