summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190917100019_update_oban.exs
blob: f673675de45e135ecbb0dc87441e6dd822c891af (plain)
1
2
3
4
5
6
7
8
9
10
11
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