1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-24 14:49:15 +00:00
akkoma/priv/repo/migrations/20190917100019_update_oban.exs

12 lines
185 B
Elixir
Raw Normal View History

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: 2)
end
end