forked from AkkomaGang/akkoma
11 lines
263 B
Elixir
11 lines
263 B
Elixir
|
defmodule Pleroma.Repo.Migrations.DeleteFetchInitialPostsJobs do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
execute(
|
||
|
"delete from oban_jobs where worker = 'Pleroma.Workers.BackgroundWorker' and args->>'op' = 'fetch_initial_posts';",
|
||
|
""
|
||
|
)
|
||
|
end
|
||
|
end
|