mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-06 08:59:50 +00:00
9 lines
174 B
Elixir
9 lines
174 B
Elixir
defmodule Pleroma.Repo.Migrations.AddObanJobsTable do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
Oban.Migrations.up(version: 2)
|
|
end
|
|
|
|
defdelegate down, to: Oban.Migrations
|
|
end
|