mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-18 04:49:23 +00:00
8 lines
177 B
Elixir
8 lines
177 B
Elixir
|
defmodule Pleroma.Repo.Migrations.UpgradeObanToV11 do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def up, do: Oban.Migrations.up(version: 11)
|
||
|
|
||
|
def down, do: Oban.Migrations.down(version: 11)
|
||
|
end
|