mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-02-13 16:13:25 +01: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
|