1
0
Fork 0
mirror of https://git.pleroma.social/pleroma/pleroma.git synced 2025-03-14 23:52:39 +00:00
pleroma/priv/repo/migrations/20190917100019_update_oban.exs
2021-01-20 20:07:24 +03:00

11 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