mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 11:19:19 +00:00
11 lines
184 B
Elixir
11 lines
184 B
Elixir
defmodule Pleroma.Repo.Migrations.UpdateObanJobsTable do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
Oban.Migrations.up()
|
|
end
|
|
|
|
def down do
|
|
Oban.Migrations.down(version: 1)
|
|
end
|
|
end
|