mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-05 16:39:47 +00:00
a21584556f
This version uses a different locking mechanism, which gets rid of `WARNING: you don't own a lock of type ShareLock` log spam
11 lines
185 B
Elixir
11 lines
185 B
Elixir
defmodule Pleroma.Repo.Migrations.UpdateOban do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
Oban.Migrations.up(version: 4)
|
|
end
|
|
|
|
def down do
|
|
Oban.Migrations.down(version: 2)
|
|
end
|
|
end
|