mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 14:21:10 +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
12 lines
185 B
Elixir
12 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
|