1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-16 00:49:59 +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