mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 14:21:10 +00:00
12 lines
194 B
Elixir
12 lines
194 B
Elixir
defmodule Pleroma.Repo.Migrations.UpdateObanJobsTable do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
Oban.Migrations.up(version: 8)
|
|
end
|
|
|
|
def down do
|
|
Oban.Migrations.down(version: 7)
|
|
end
|
|
end
|