mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2025-01-20 03:06:06 +01: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
|