summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200315125756_delete_fetch_initial_posts_jobs.exs
blob: 5b8e3ab91250a23d671445b77308690a8c2c60bb (plain)
1
2
3
4
5
6
7
8
9
10
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