1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-27 14:05:19 +01:00
pleroma/priv/repo/migrations/20200402063221_update_oban_jobs_table.exs
2020-04-10 21:27:50 +03:00

12 lines
194 B
Elixir

defmodule Pleroma.Repo.Migrations.UpdateObanJobsTable do
use Ecto.Migration
def up do
Oban.Migrations.up(version: 8)
end
def down do
Oban.Migrations.down(version: 7)
end
end