Update oban_jobs priority

Fixes #213
This commit is contained in:
FloatingGhost 2022-09-16 12:50:51 +01:00
parent 00f840fd44
commit f21d86cb2a
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,10 @@
defmodule Pleroma.Repo.Migrations.UpgradeObanToV11 do
use Ecto.Migration
def up, do: Oban.Migrations.up(version: 11)
def up do
execute("UPDATE oban_jobs SET priority = 0 WHERE priority IS NULL;")
Oban.Migrations.up(version: 11)
end
def down, do: Oban.Migrations.down(version: 11)
end