1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-11-17 18:49:15 +00:00
akkoma/priv/repo/migrations/20190917100019_update_oban.exs
2021-01-20 20:07:24 +03:00

12 lines
185 B
Elixir

defmodule Pleroma.Repo.Migrations.UpdateOban do
use Ecto.Migration
def up do
Oban.Migrations.up(version: 4)
end
def down do
Oban.Migrations.down(version: 3)
end
end