mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-20 08:30:59 +00:00
12 lines
184 B
Elixir
12 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
|